text
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernyakhovo"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ラドフォード"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhuzhou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ryomgård"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Virar"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Martinez"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "プロボ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Westmount"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Köpmanholmen"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salaspils"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Окотокс"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Scheeßel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mörschied"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salvaterra de Miño"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Плешково"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bodmin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bakhtaj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jastrzębia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "南阳"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mühldorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Washim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бастроп"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "forlag" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Hagens"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kvam Kommune"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Die Wahrheit über Deutschland Vereine"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Die Wahrheit über Deutschland Vereine"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Science and scientists some papers on natural history by Rev John Gerard S J"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Science and scientists some papers on natural history by Rev John Gerard S J"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Ems"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eidstod"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "デンベ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/AlumniOfTheUniversityOfMusicAndPerformingArts,Vienna> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Zubin_Mehta )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gineroi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:CanadianRockSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Chad_Kroeger )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Unterneukirchen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elkhorn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marktl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malaya Maslovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tetlatlahuca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kentung"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lourouer-Saint-Laurent"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arsug"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maple Creek Election Precinct"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teryaevskiy (nezhil)"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huşi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Epfendorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "aankomst dames schaatsploeg op schiphol vlnr stien kaiser wil burgmeijer en carry geyssen"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "aankomst dames schaatsploeg op schiphol vlnr stien kaiser wil burgmeijer en carry geyssen"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:YagoPermanentlyLocatedEntity ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:The_Cox_Family )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Newport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Helmbrechts"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bacuri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:DeathRockMusicalGroups ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Ghost_Dance_(band)> )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromSanFrancisco,California> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Vince_Guaraldi )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Osch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anahuac"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Badgerville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sherrington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kedrovji"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Per la gloriosa promozione alla sacra porpora di Gian Carlo Bandi vescovo d'Imola Pontefice Pio VI sonetto"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Per la gloriosa promozione alla sacra porpora di Gian Carlo Bandi vescovo d'Imola Pontefice Pio VI sonetto"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adsubia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Confluence"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ponte Vedra"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fakarava"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wells Branch"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dt:   <http://dbpedia.org/datatype/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?movies ?budget
FROM dbpr:Woody_Allen
WHERE
  { ?movies (dbpo:writer|dbpo:director)|dbpo:starring dbpr:Woody_Allen .
    ?movies  dbpo:gross   ?gross ;
             dbpo:budget  ?budget
    FILTER ( ?budget > "50000"^^dt:usDollar )
  }
ORDER BY ?gross
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fershampenuaz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Krišjānis Valdemārs Ko devis Latvju tautai Valdemārs &"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Krišjānis Valdemārs Ko devis Latvju tautai Valdemārs &"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Federwisch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gatsaluk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasnokholmskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kemnitz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Avondale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eberschwang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gideon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Phoenix"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Masuika"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mountainair"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bopala"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Guidiubaldi e marchionibus Montis Perspectiuae libri sex"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Guidiubaldi e marchionibus Montis Perspectiuae libri sex"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gensingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oupeye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heddesheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sherbrooke"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:WashboardPlayers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Washboard_Sam )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palwal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brush"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Хорошевская"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:VocalionRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Robert_Johnson )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?altName ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  {   { ?altName  rdfs:label            "CVS Health"@en ;
                  dbpo:wikiPageRedirects  ?x
      }
    UNION
      { ?x  rdfs:label  "CVS Health"@en }
    ?x  rdf:type  dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:CountryBluesMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Robert_Johnson )
  }
LIMIT   100
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "up Hurricane Patricia"@en }
    UNION
      { :up_Hurricane_Patricia
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bulgăruș"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zirzow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Podµpilje"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "world press photo de beste foto van het jaar gemaakt op cyprus door donald mccullin"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "world press photo de beste foto van het jaar gemaakt op cyprus door donald mccullin"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Byerly"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baons-le-Comte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nambour"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?s
WHERE
  { ?s  rdf:type         foaf:Person ;
        dbpo:birthPlace  dbpr:South_Korea
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Птуй"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huatangpu"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verwaltungsgemeinschaft Uder"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sasykino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Eugènia de Berga"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grandview"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サン・ミケーレ・ディ・ガンツァリーア"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Snyder"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chic Chic Lake"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bingen am Rhein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ozerensk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Michele di Ganzaria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cewice"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPopSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Sylvester_(singer)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skjervoy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fürstenwalde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Babanka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Skrin"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thornwood"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spencer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ai’er Kela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { <http://dbpedia.org/resource/Magnum_(band)>
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maple Grove"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Alvin_Stardust )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Steele"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mehdya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brzezie"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vila Franca de Xira"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Turku"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plonéis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kamapanda Mission"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ense"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Langerringen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weinzierlein"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Морден"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Donnan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buftea"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Narys-Tau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Faribault"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dunavant"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maja"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haseldorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Williamsport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Świecko"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromTallahassee,Florida> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:T-Pain )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hagondange"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?movieName ?abstract ?genre ?releaseDate
WHERE
  { ?film  rdf:type       dbpo:Film ;
           rdfs:label     ?movieName ;
           dbpo:abstract  ?abstract ;
           dbprop:genre   ?genre ;
           dbprop:date    ?releaseDate
    FILTER ( lang(?movieName) = "en" )
    FILTER ( lang(?abstract) = "en" )
    FILTER ( ?releaseDate > "2014"^^xsd:dateTime )
  }
ORDER BY DESC(?releaseDate)
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Jambiya"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Jambiya"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Juriquilla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Massena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dce:  <http://purl.org/dc/elements/1.1/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?birthPlace ?birthDate ?description ?workplaces ?field ?museum
WHERE
  { ?person  dbpo:birthDate   ?birthDate ;
             dce:description  ?description
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:field  ?field }
    OPTIONAL
      { ?person  dbprop:workplaces  ?workplaces }
    OPTIONAL
      { ?museum  dbpo:type  :Museum ;
                 ?p         ?person
      }
    ?person  rdfs:label  ?name
    FILTER regex(?name, "Lennox")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Senegutu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Старыи"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ванген-Ольтен"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Freisen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Couvet"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jefferson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lutterworth"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luchinka"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bijapur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rucheyki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thachi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Graham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cozvijar"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neustadt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hirokawa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Broad Haven"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Etxebarri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ウェールト"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meaux"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kutizhma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Central Bucks South at"@en }
    UNION
      { :Central_Bucks_South_at
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kozłów"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1908-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ponerihouen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ban Nong Kaeo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Centennial"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zaccar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Radionovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusiciansFromCalifornia ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Emilie_Autumn )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wolfhagen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soltsy"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pembina Heights"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bellaire"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?fullName
WHERE
  { ?y  rdfs:label  "Marana AZ"@en ;
        rdf:type    dby:YagoGeoEntity ;
        rdfs:label  ?fullName
    FILTER ( lang(?fullName) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rollingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kebasen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glen Ellen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ajigasawa"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Godhavn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanHouseMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Gloria_Gaynor )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yuliya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dalmatovskiy Raion"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Piscataway Township"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Iscehisar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kul'chumovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marksville"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:SlideGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Taj_Mahal_(musician)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wenshang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amsterdam Zuid-Oost"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:JiveRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jennifer_Love_Hewitt )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Лысогорка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Histoire naturelle générale des règnes organiques Volume v"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Histoire naturelle générale des règnes organiques Volume v"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saratov Raion"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wiang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wooroonooran"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalyan Dombivli"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frankfurt am Main"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bechhofen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "blomsterpotte"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "blomsterpotte"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Carl Gottlieb Rücker"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Carl Gottlieb Rücker"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staraya Maluksa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sukabumi"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novodzherelievskaya"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bogbasili"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rogalin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altendorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baalbek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Vor dem Brandenburger Tor"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Vor dem Brandenburger Tor"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cawdor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al-Mitarfy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kayenta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ödåkra"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Knights of the"@en }
    UNION
      { :Knights_of_the
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "kavel h priesterwijding na"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "kavel h priesterwijding na"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Steinhagen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "The Tipsy Elk"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "The Tipsy Elk"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baden bei Wien"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shikshi"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Photharam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lumbushi"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Guillaume"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint Paris"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greenfield"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niederzier"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanMetalcoreMusicalGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Zao_(American_band)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Isny"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berthierville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berjozovski"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  str(?cover)
WHERE
  { ?subject  dbprop:name    ?name ;
              dbprop:artist  ?artist ;
              rdf:type       dbpo:Album ;
              dbprop:cover   ?cover
    FILTER ( regex(?name, "Keep an Eye on the Sky, Disc 4, Live at Lafayette's Music Room, Memphis TN "@en, "i") && ( ?artist = "Big Star"@en ) )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Riba-roja de Túria"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Salado"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cucuta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zaanstad"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Ditzenbach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberland"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eagan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morskoj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "金马·名仕园(西南门)"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obertshausen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mission Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishRockGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Wayne_Hussey )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Slabbinck nv"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Slabbinck nv"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "West Bromwich"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Müllheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ixtapaluca"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vidal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ratyzbona"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soeurdres"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sondrio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aso-gun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amadora"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kütahya"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴィリー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novara"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lonsdal"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wareham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haag in Oberbayern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Appin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1960-01-01;end=1985-12-31-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "シュシャルイ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pyatnikha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Theobroma"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuscarora"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jūrmala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sokołów Podlaski"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jiujiang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kremmin"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kingstree"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Forest Park"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arroyo Hondo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hampton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Munderkingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Corumbá"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suyenga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goryun"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Joch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "海纳"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abekr"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusiciansFromNewJersey ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Tim_Bogert )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "rozancius szwĘciausios maryos pannos yr saldziausya warda jezusa teypogi spasabas apwaykšciojima kałnu kałwarios ziamayciu [jurgis kasakauskis]"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "rozancius szwĘciausios maryos pannos yr saldziausya warda jezusa teypogi spasabas apwaykšciojima kałnu kałwarios ziamayciu [jurgis kasakauskis]"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhayylma"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Basel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lower Hutt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carlyle"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glacier View"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AbletonLiveUsers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Christopher_Willits )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shilovo-Kurya"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skjoldehamn"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Callery"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alcaidón de la Vega"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vyal'ye"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Knowledge Village"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moletai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Eulalia de Gállego"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bringen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cleburne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neustadt(Wied)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?movieName ?abstract ?genre ?releaseDate
WHERE
  { ?film  rdf:type       dbpo:Movie ;
           rdfs:label     ?movieName ;
           dbpo:abstract  ?abstract ;
           dbprop:genre   ?genre ;
           dbprop:date    ?releaseDate
    FILTER ( lang(?movieName) = "en" )
    FILTER ( lang(?abstract) = "en" )
    FILTER ( ?releaseDate > 2015 )
  }
ORDER BY DESC(?releaseDate)
LIMIT   10000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tägerwilen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Calvià"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PolishSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Marek_Grechuta )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "schilderijen voor aktie tijger in nood gejureerd in hiltonhotel te amsterdam schilder david houthuyse cecile dreesmann en toon hermans bij schilderij"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "schilderijen voor aktie tijger in nood gejureerd in hiltonhotel te amsterdam schilder david houthuyse cecile dreesmann en toon hermans bij schilderij"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Groshevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albion"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spokane"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Disco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kuropta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kaministiquia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Potsep"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AlumniOfTheFranzLisztAcademyOfMusic ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Fritz_Reiner )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Independence"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Venus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "レザーヘッド"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ostervala"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?populationDemonym ?person ?museum ?building
WHERE
  { ?place  rdf:type      onto:Place ;
            rdfs:label    ?name ;
            onto:country  ?country
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place  dbprop:populationDemonym  ?populationDemonym }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Bratislava")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Liempde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bau"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Утузилка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Narbolia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lahijan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aranjuez"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gryfino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bibala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "close Round 2 at"@en }
    UNION
      { :close_Round_2_at
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Hermetikkboks" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Eldorado" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "aspargesstenger"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matukeng"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Connellsville"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Andratx"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴォンドゥーヴル=デュ=ポワト"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pforzheim"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sable River"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bursa"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:YagoPermanentlyLocatedEntity ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Offlaga_Disco_Pax )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coral Springs"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staritsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:VanguardRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Larry_Coryell )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Whitby"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dzhuen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Lullaby Sung By Throat Singing"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Lullaby Sung By Throat Singing"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Felanitx"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Doshchanovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Myza Tsirsty"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kichmengsko-Gorodetskiy Raion"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Holvandi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laguna Niguel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dry Ridge"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Agua Caliente"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "セッティモ・トリネーゼ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tambon Nong Prue"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalithea"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winter Haven"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Dürrheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "安蒂波洛"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Backarna"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ケナー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Charlotte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caçapava"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Akbarpur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oakton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tignor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Los Alcázares"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Clancy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bonate Sopra"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Laurent-de-l'Île-d'Orléans"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malmback"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boô-Silhen"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Riverdale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Purwantoro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Noves"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haiger"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frankfurt-Hahn Airport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Messalina's offer aan Venus en Cupido"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Messalina's offer aan Venus en Cupido"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vila Velha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haugesund"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baygamut"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Volodarsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bay Tree"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bruno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lake Park"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bhuvanagiri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Non Sila"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laporte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Fallout Fallout"@en }
    UNION
      { :Fallout_Fallout
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uchkain"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Landstuhl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abreus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hälsingland"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Danjiayan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campbells"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サン・ラファエル"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moshkovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ardennes"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Charleville-Mézières"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Medellín"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPeopleOfWelshDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:David_Crosby )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korolyov"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ホープウェル"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mieleuz"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grogol"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuenhagen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buhler"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sassello"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ニスコバ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hykkila"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wetter"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Letterilly"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parsons"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hatchet Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kleinhau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Massugas"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?img ?link
WHERE
  { ?place  rdf:type              dbpo:Building ;
            dbprop:locationTown   dbpr:Stockholm ;
            rdfs:label            ?name ;
            dbpo:thumbnail        ?img ;
            foaf:isPrimaryTopicOf  ?link
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ffair Rhos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Qitaihe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arrou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サン=タヴィ=ド=スレージュ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "linkamTinner"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "linkamTinner"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lezey"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novokhovrino"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korczowa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amstetten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ammersee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carcoar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nampa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chilakaluripet"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mo i Rana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pervoe Maya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kipfenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Helotes"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guadalajara"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Priego de Córdoba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chester Hill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Myakinchino"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Трянгуши"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bage"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waterflow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hasanah"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mil'shino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tarbagatay"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasilov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pueblo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Famagusta Bay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salamanca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Taban Lebak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karsibor"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fairbanks"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villanueva de las Torres"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Clarita"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obil'nyj"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ансан"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arlington Heights"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ескино"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hoensbroek"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AfricanAmericanSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Akon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Il'yeshi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glubochka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "G Roche"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "G Roche"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ジャクソン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Moruva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "195--01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("S.-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mountain View"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zell am Harmersbach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gressvik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chuncheon"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アライアンス"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montereau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sunrise"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1915-03-23-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  pos:  <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?label ?lat ?long
FROM <http://dbpedia.org>
WHERE
  { dbpr:Subtypes_of_HIV
              rdfs:label  ?label
    OPTIONAL
      { dbpr:Subtypes_of_HIV
                  pos:lat   ?lat ;
                  pos:long  ?long
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waconia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Degtyarsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mililani"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blumberg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rinteln"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pazar"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:BritishPopMusicGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Marshall_Hain )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Rappenau"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusiciansFromVermont ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Dan_Tyminski )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hoppegarten"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Galica"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parker"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salas de la Ribera"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schonaich"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vestervig"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bengbe Beressi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Michel_Legrand rdf:type ?type .
    dbpr:Michel_Legrand ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Michel_Legrand
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colonia Butalo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ensenada"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Kryssjern"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adalar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ballaigues"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Patra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quispamsis"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PsychobillyMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:The_Living_End )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pasirjambu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mytskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Klooster van Taizé"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Klooster van Taizé"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berezovyy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Patok Beusi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jaryczów Stary"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brady"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Крешель"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Piaseczno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanVoiceActors ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Gene_Simmons )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zima"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ellenton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luyang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Syursovaj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "A Run A Ground Boat"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "A Run A Ground Boat"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "シヴァリニハ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Konstanz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marengo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wollongong"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berga"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Madinat Zayid"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Escobedo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jiaxing"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sijelling"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dübendorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rock Dell"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1914-01-01;end=1914-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bussy-Lettrée"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mulino"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cherdakly"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roslev"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Onbekend"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salt"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chamartín de la Rosa"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buchen (Odenwald)"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:DineAloneRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:The_Living_End )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hudson"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Genthin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromWarsaw ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Mack_Gordon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borrentin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belle Fourche"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bol'sherech'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "General Levalle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rubanj"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seyches"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mestre"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brakpan"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPercussionists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Glen_Velez )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ushkhayta"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lluta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Igarape-Acu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sanare"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burgdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Origin and provenance of igneous clasts from late Palaeozoic conglomerate formations Del Ratón and El Planchón in the Andean Precordillera of San Juan Argentina"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Origin and provenance of igneous clasts from late Palaeozoic conglomerate formations Del Ratón and El Planchón in the Andean Precordillera of San Juan Argentina"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Espoo railway station"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Velanda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PeopleFromNarbonne ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Charles_Trenet )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kirche"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grayslake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad König"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/M83_(band)> rdf:type ?type .
    <http://dbpedia.org/resource/M83_(band)> ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { <http://dbpedia.org/resource/M83_(band)>
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Commack"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:A._J._McLean )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lévis-St.-Nom"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hamilton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tetlatlahuca (municipality)"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "セントポール"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blakely"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sengenthal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pfaffenhofen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Unidad Habitacional José María Morelos y Pavón"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Svedala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernyakhovo"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?p ?date ?money
WHERE
  { ?p  rdf:type     dbpo:Film ;
        dbpo:author  dbpr:Woody_Allen
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "タプル"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spoa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Camrose"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Edinburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nianzibang"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mareretu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Little Finger"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Little Finger"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Fashn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rogers"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  (COUNT(DISTINCT ?XVar0) AS ?XVar1)
WHERE
  { ?XVar2  rdf:type  dbpo:Film .
    ?XVar0  rdf:type  wde:Q49455
      { ?XVar2  ?XVar3  ?XVar0 }
    UNION
      { ?XVar0  ?XVar3  ?XVar2 }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chingil'tuj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Steinhausen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { { {   { ?uri  ?q1  <http://dbpedia.org/resource/Nobel_prize_(literature)> }
        UNION
          { <http://dbpedia.org/resource/Nobel_prize_(literature)>
                      ?p1  ?uri
          }
      }
      { ?uri  rdf:type  dbpo:Writer }
    }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perris"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bicudo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ニューアーク"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Pauli Iouii Descriptiones quotquot extant regionum atque locorum quibus vt eius omnia hoc postremo volumine complecteremur De piscibus romanis libellum verè aureum adiunximus"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Pauli Iouii Descriptiones quotquot extant regionum atque locorum quibus vt eius omnia hoc postremo volumine complecteremur De piscibus romanis libellum verè aureum adiunximus"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pacarkeling"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Passion and Fashion"@en }
    UNION
      { :Passion_and_Fashion
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Asado Con Cuero Parte"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Asado Con Cuero Parte"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  db-owl: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?ville  rdf:type          db-owl:Settlement ;
            db-owl:inseeCode  ?code ;
            ?attribut         ?valeur
    FILTER ( ?code = "70465" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boadilla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "at Council"@en }
    UNION
      { :at_Council  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nemi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mesquite"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uvarovka"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Picarras"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Non Sila"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "大芬站"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Slavyanka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boort"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanPeopleOfAustrian-JewishDescent ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Barbra_Streisand )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nijswiller"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khopoli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eugene"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Picton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:Shudder_to_Think
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vostryakovo"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Les Ulis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sankiton"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sisters"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dziwnowek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "East Gwillimbury"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishFemaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Mica_Paris )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Banjup"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jepara Regency"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tegoja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:GoddardCollegeAlumni ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Susie_Ibarra )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sortavala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fasanerie"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meyzieu"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dvorovi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mooloolaba"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stoyantsj"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tenino"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "モス"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "World" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Press" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Photo" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "de" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "beste" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "foto" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "van" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "het" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "jaar" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "gemaakt" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "op" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "Cyprus" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "door" .
    ?person  foaf:name     ?name13 .
    ?name13  bif:contains  "Donald" .
    ?person  foaf:name     ?name14 .
    ?name14  bif:contains  "McCullin"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santiago de Machaca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Subutak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Allende"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Troncal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1940-01-01;end=1940-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asige"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "班克罗夫特"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PoetsWhoCommittedSuicide ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Anne_Sexton )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Qīrah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ProgressiveRockGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:John_Petrucci )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1919-01-01;end=1929-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oaks"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waxahachie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アイランド・パーク"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanMusicalDuos ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Eagles_of_Death_Metal )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Althengstett"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cambrils"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Janesville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AlumniOfTheUniversityOfBirmingham ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Simon_Le_Bon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Felice Circeo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winsen (Luhe)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kiihtelysvaara"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krampenes"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hayfork"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pattani"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moore Haven"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torrance"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crevillent"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Longmeadow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "卡尔皮"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laguna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sokolnice"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanTelevisionActors ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Adrienne_Bailon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altenheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:JewishClassicalPianists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Lili_Kraus )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Živinice"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Libertyville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Municipio de Hillsborough"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Cucuite"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "克莱尔莫尔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caledonia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buffalo Grove"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosh HaAyin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Veles"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Osieki"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carsley"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Riezlern"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "The reported speech in its Pedagogic dimension"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "The reported speech in its Pedagogic dimension"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "希尔顿黑德艾兰"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Salzdetfurth"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jeddoe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eigeltingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Durov Bobrik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hirschaid"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromAntwerp(province)> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Sarah_Bettens )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanComposers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Eyvind_Kang )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Енш"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Bastide"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Napa"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Losse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Vougay"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fenshi"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torreón"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aixe-sur-Vienne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barotul"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berryville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Provo"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marçà"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Majdan Królewski"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ベトルズ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Talcahuano"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Per Støver"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Per Støver"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sääksjärvi"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heideland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mooloolaba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tarkany"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Djédaa"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brocēni"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schärding"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chirets"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?X ?name
WHERE
  { ?X  dbprop:officialName  ?name ;
        rdf:type             dbprop:Place ;
        dbpo:country         dbpr:Chile
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sterling Heights"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wiedemar"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pirinem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "エギアン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromNorfolk,Virginia> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jake_E._Lee )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gröde"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Cocha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Монтиселло"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/CaliforniaStateUniversity,NorthridgeAlumni> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Kim_Pensyl )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oxnard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kumakhta"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adelsheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "焦作"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Olalla"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terebyn'"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:RawVegans ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jason_Mraz )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jersey City"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tureni"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laguna Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skåde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴェルフネソレニ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pittston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Newnan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goldbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Escondido"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thal"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brockport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hara Station"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hangchuan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "hermetikkboks eldorado aspargesstenger"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "hermetikkboks eldorado aspargesstenger"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusicalGroupsDisestablishedIn2009 ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Aaroh )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Betenkes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:TuskegeeUniversityAlumni ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Big_Bill_Morganfield )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bhubaneshwar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Näsåker"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bear"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Andechs"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Denney"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "East Brunswick"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gutiérrez Zamora"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dessel"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Madanapalle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barmer"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aryutenki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("0801-01-01") ) && ( ?date < xsd:date("802-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pottum"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Juan Bautista"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Tablada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ClubDJs ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Donald_Glaude )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Red Bank"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berger"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Szadek"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ganzhou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ostfold"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "策勒县"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Onomichi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Podgórzyce, Lubusz Voivodeship"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Simpsonville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "マイノット"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dasmariñas"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reytarovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1963-01-01;end=1965-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sokhondo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Почеп"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dundry"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manalapan Township"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wildberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ラシュート"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mecca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crato"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thandorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al-Zaqaziq‎"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa María Atzompa"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Allery"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Val-de-Vesle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stare Mesto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arcen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Summit"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPeopleOfScottishDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Fergie_(singer)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyakhta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "大垣"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lumbushi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ambarvale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schallstadt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ostrander"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bethesda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stanbridge Station"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hausleiten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Mícheál" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Ó" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Murchadha"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pictou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Garches"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novorybnaya"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hochdorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Addo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Adam  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Derkunskoye"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "セーデルテリエ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wehr"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vallabrix"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ayagawa-cho"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bayöen"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Record_store
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cambrils"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bassim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:JapanesePacifists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Yoko_Ono )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Samuel L. Clemens"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Samuel L. Clemens"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1905-09-27"^^xsd:date )
    FILTER ( ?deathDate > "1905-09-27"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Padilla de Arriba"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Taal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ティオンビル"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalinko"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Etienne-De-Carlat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:FemaleJazzMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Etta_James )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horten"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kitchener"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Livermore
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Comendador Gomes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Druten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>

SELECT  ?x ?y ?z
WHERE
  { ?x  rdf:type  dbpo:Species ;
        ?y        ?z
    FILTER ( ( ( ( ( ?y != rdfs:comment ) && ( ?y != rdfs:label ) ) && ( ?y != owl:sameAs ) ) && ( ?y != dbpo:abstract ) ) && ( ?y != dct:subject ) )
  }
ORDER BY ?x
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blodelsheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diriamba"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nazareth"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kornwestheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Horse_Racing
                  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location>
      }
    UNION
      { dbpr:Horse_Racing
                  rdf:type  dbpo:Place
      }
    UNION
      { dbpr:Horse_Racing
                  rdf:type  dbpo:PopulatedPlace
      }
    UNION
      { dbpr:Horse_Racing
                  rdf:type  umbelrc:PopulatedPlace
      }
    UNION
      { dbpr:Horse_Racing
                  rdf:type  url:Place
      }
    UNION
      { dbpr:Horse_Racing
                  rdf:type  dby:YagoGeoEntity
      }
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Tecnico  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Serres"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Boutique
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Daventry"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Henry Mackenzie"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Henry Mackenzie"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1796-03-29"^^xsd:date )
    FILTER ( ?deathDate > "1796-03-29"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Indianola"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cortázar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  yago: <http://yago-knowledge.org/resource/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

CONSTRUCT 
  { 
    ?person rdf:type yago:TokugawaShoguns .
    ?person foaf:name ?name .
    ?person owl:birthYear ?birth .
    ?person owl:deathYear ?death .
    ?person owl:child ?child .
    ?person foaf:depiction ?depiction .
    ?person dbprop:successor ?successor .
    ?person foaf:isPrimaryTopicOf ?wikipage .
  }
WHERE
  { ?person  rdf:type   yago:TokugawaShoguns ;
             foaf:name  ?name
    OPTIONAL
      { ?person  owl:birthYear  ?birth }
    OPTIONAL
      { ?person  owl:deathYear  ?death }
    OPTIONAL
      { ?person  owl:child  ?child }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  dbprop:successor  ?successor }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipage }
    OPTIONAL
      { ?person  dbprop:predecessor  ?predecessor }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Squamous-cell_carcinoma
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "TrÃ"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Busto Arsizio"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwäbisch Gmünd"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chirpy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bookin"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St.-Matre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ereymentau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:20th-centuryClassicalComposers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:George_Gershwin )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cullman"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ar Ramtha"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Veramin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanFolkSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Ella_Jenkins )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Костры"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Priiskovyj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Debno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

CONSTRUCT 
  { 
    <http://vfringe.totl.net/2015/2015/jack-pout-1-woodland-bar-2015-08-12T14:00> ?p1 ?x2 .
    <http://vfringe.totl.net/2015/2015/jack-pout-1-woodland-bar-2015-08-12T14:00> ?p4 ?x3 .
    ?x3 rdf:type ?x5 .
    <http://vfringe.totl.net/2015/2015/jack-pout-1-woodland-bar-2015-08-12T14:00> ?p7 ?x6 .
    ?x6 rdfs:label ?x8 .
  }
WHERE
  {   { <http://vfringe.totl.net/2015/2015/jack-pout-1-woodland-bar-2015-08-12T14:00>
                  ?p1  ?x2
      }
    UNION
      { { <http://vfringe.totl.net/2015/2015/jack-pout-1-woodland-bar-2015-08-12T14:00>
                    ?p4       ?x3 .
          ?x3       rdf:type  ?x5
        }
      }
    UNION
      { { <http://vfringe.totl.net/2015/2015/jack-pout-1-woodland-bar-2015-08-12T14:00>
                    ?p7         ?x6 .
          ?x6       rdfs:label  ?x8
        }
      }
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanCountrySingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Linda_Ronstadt )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Podgornoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bütschwil"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wachau"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staříč"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1900-01-01;end=1960-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?XVar0 ?XVar1
WHERE
  { wde:Q17142358
              rdf:type  ?XVar0
    OPTIONAL
      { ?XVar0  rdfs:label  ?XVar1
        FILTER ( ( lang(?XVar1) = "" ) || langMatches(lang(?XVar1), "en") )
      }
  }
LIMIT   500
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kose Parish"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prudyanka"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bjert"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "S Miguel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Roast_chicken
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Rinconada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Butkent"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jinzhong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kurga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Дырово"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ланкин"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soissons"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Currituck"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jordbro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bruz"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schussenried"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haverhill, Massachusetts"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lindesnes"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "相模原"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Set  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "False Pass"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Holten"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?XVar0 ?XVar1 ?XVar2 ?XVar3
WHERE
  { ?XVar4  ?XVar0     ?XVar5 .
    ?XVar5  wde:P495c  ?XVar6 ;
            rdf:type   wde:Q649062
      { ?XVar5  ?XVar7  wde:Q17142358 }
    UNION
      { wde:Q17142358
                  ?XVar7  ?XVar5
      }
    OPTIONAL
      { ?XVar0  rdfs:label  ?XVar1
        FILTER ( ( lang(?XVar1) = "" ) || langMatches(lang(?XVar1), "en") )
      }
    OPTIONAL
      { ?XVar0  rdfs:range  ?XVar2 }
    OPTIONAL
      { ?XVar0  rdfs:domain  ?XVar3 }
  }
LIMIT   500
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Súria"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maysville"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stephansposching"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Szlisselburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hafizabad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bakhirëvo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tverskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?s ?o ?k
WHERE
  {   { ?s  rdf:type     dbpo:Group ;
            dbpo:genre   dbpr:K-pop ;
            rdfs:labe    ?o .
        ?k  dbpo:artist  ?s
      }
    UNION
      { ?s  rdf:type     foaf:Person ;
            dbpo:genre   dbpr:K-pop ;
            rdfs:label   ?o .
        ?k  dbpo:artist  ?s
      }
  }
ORDER BY ASC(?k)
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suthang"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Handarpe"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fulleborn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manicore"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tewantin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chelmsford"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tidworth"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chemnitz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horad Smalyavichy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shahjahanpur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Billinge"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Лас-Торрес-де-Котильяс"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spangenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sainte-Agathe-des-Monts"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rueda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El'brus"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roézé-sur-Sarthe"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amarante do Maranhão"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burekhino"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aurskog"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vajkijaur"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fetsund"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:United_States
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kountze"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nueva San Salvador"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Acomb"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quillota"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vanxains"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Literal_translation
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?nombreShow
WHERE
  { ?uri  rdf:type      dbpo:TelevisionShow ;
          dbpo:creator  dbpr:Walt_Disney
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mamitwa's Location"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rostov-na-Donu"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "イチャダマジャファープール"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Old Brampton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santo-Pietro-di-Tenda"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Le Mans"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Īthī"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:The_Czech_Republic
                  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location>
      }
    UNION
      { dbpr:The_Czech_Republic
                  rdf:type  dbpo:Place
      }
    UNION
      { dbpr:The_Czech_Republic
                  rdf:type  dbpo:PopulatedPlace
      }
    UNION
      { dbpr:The_Czech_Republic
                  rdf:type  umbelrc:PopulatedPlace
      }
    UNION
      { dbpr:The_Czech_Republic
                  rdf:type  url:Place
      }
    UNION
      { dbpr:The_Czech_Republic
                  rdf:type  dby:YagoGeoEntity
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sysaki"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lawrence"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leiwen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "niederdahl"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sageby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wörth am Rhein"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alvord"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carmagnola"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "伍宾"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/ActorsFromHouston,Texas> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Michael_Nesmith )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kleinostheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reese"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fairfax"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vyalki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bregenz"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baton Rouge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bil'gada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "埃尔莫"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:MATLAB  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Langshyttan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skivarp"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ngrejo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Braslau Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Un'ya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fairwood"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Jeff  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PeopleFromBrooklyn ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:George_Gershwin )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Worthing rdf:type ?x1 .
    dbpr:Worthing rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Worthing
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Worthing
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolosovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "25497409" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verolengo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Marjan Trobec"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Marjan Trobec"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amesbury"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cholm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?company  rdf:type  dbpo:Company
    OPTIONAL
      {   { ?company  dbprop:logo  ?logo
            FILTER isIRI(?logo)
          }
        UNION
          { ?company  foaf:depiction  ?logo
            FILTER isIRI(?logo)
          }
      }
    OPTIONAL
      { ?company  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "EN")
      }
    OPTIONAL
      { ?company  gsp:lat   ?latitude ;
                  gsp:long  ?longitude
      }
    OPTIONAL
      { ?company  dbpo:foundingDate  ?foundingDate }
    OPTIONAL
      { ?company  foaf:homepage  ?homepage }
    OPTIONAL
      { ?company  dbprop:symbol  ?stockSymbol }
    OPTIONAL
      { ?company  dbpo:subsidiary  ?subsidiaryPage }
    OPTIONAL
      { ?company  dbprop:name  ?name }
  }
OFFSET  1740
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fugenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Underskjørt"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Underskjørt"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "巴拉博尼塔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Bretschneider" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Daniel" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "dÃ" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Astronomus" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Bl" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Deckfarben" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "mm" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "wohl" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "Aus" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "Bretschneider" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "Daniel" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "dÃ" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "Ein" .
    ?person  foaf:name     ?name13 .
    ?name13  bif:contains  "Buch" .
    ?person  foaf:name     ?name14 .
    ?name14  bif:contains  "von" .
    ?person  foaf:name     ?name15 .
    ?name15  bif:contains  "allerley" .
    ?person  foaf:name     ?name16 .
    ?name16  bif:contains  "Inuentionen" .
    ?person  foaf:name     ?name17 .
    ?name17  bif:contains  "zu" .
    ?person  foaf:name     ?name18 .
    ?name18  bif:contains  "Schlittenfarthen" .
    ?person  foaf:name     ?name19 .
    ?name19  bif:contains  "welche" .
    ?person  foaf:name     ?name20 .
    ?name20  bif:contains  "auff" .
    ?person  foaf:name     ?name21 .
    ?name21  bif:contains  "dergleichen" .
    ?person  foaf:name     ?name22 .
    ?name22  bif:contains  "arten" .
    ?person  foaf:name     ?name23 .
    ?name23  bif:contains  "gar" .
    ?person  foaf:name     ?name24 .
    ?name24  bif:contains  "wol" .
    ?person  foaf:name     ?name25 .
    ?name25  bif:contains  "zugerichtet" .
    ?person  foaf:name     ?name26 .
    ?name26  bif:contains  "und" .
    ?person  foaf:name     ?name27 .
    ?name27  bif:contains  "leichtlich" .
    ?person  foaf:name     ?name28 .
    ?name28  bif:contains  "gefÃhret" .
    ?person  foaf:name     ?name29 .
    ?name29  bif:contains  "werden" .
    ?person  foaf:name     ?name30 .
    ?name30  bif:contains  "kÃnnen" .
    ?person  foaf:name     ?name31 .
    ?name31  bif:contains  "fÃr" .
    ?person  foaf:name     ?name32 .
    ?name32  bif:contains  "FÃrstliche" .
    ?person  foaf:name     ?name33 .
    ?name33  bif:contains  "GrÃfliche" .
    ?person  foaf:name     ?name34 .
    ?name34  bif:contains  "Herrn" .
    ?person  foaf:name     ?name35 .
    ?name35  bif:contains  "und" .
    ?person  foaf:name     ?name36 .
    ?name36  bif:contains  "Adelstands" .
    ?person  foaf:name     ?name37 .
    ?name37  bif:contains  "Personen" .
    ?person  foaf:name     ?name38 .
    ?name38  bif:contains  "mehren" .
    ?person  foaf:name     ?name39 .
    ?name39  bif:contains  "theils" .
    ?person  foaf:name     ?name40 .
    ?name40  bif:contains  "von" .
    ?person  foaf:name     ?name41 .
    ?name41  bif:contains  "neuem" .
    ?person  foaf:name     ?name42 .
    ?name42  bif:contains  "visirt" .
    ?person  foaf:name     ?name43 .
    ?name43  bif:contains  "unnd" .
    ?person  foaf:name     ?name44 .
    ?name44  bif:contains  "verferttigett" .
    ?person  foaf:name     ?name45 .
    ?name45  bif:contains  "Dresden" .
    ?person  foaf:name     ?name46 .
    ?name46  bif:contains  "SLUB" .
    ?person  foaf:name     ?name47 .
    ?name47  bif:contains  "MscrDresdB"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alverda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matthews"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lafayette Hill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "50016" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krichina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?person ?birthdate
WHERE
  { ?person  dbpo:birthPlace  dbpr:Lebanon ;
             dbpo:birthDate   ?birthdate
    FILTER ( datatype(?birthdate) = xsd:date )
    FILTER ( day(?birthdate) = day(now()) )
    FILTER ( month(?birthdate) = month(now()) )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "56619243" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vouziers"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Świdnica"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "French Creek"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "20-29-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?person
WHERE
  { ?person  dbpo:birthPlace  dbpr:Lebanon ;
             rdf:type         dbpo:soccerPlayer
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gilliatt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fedortsova"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Celje"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "佩尔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Медельин"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santo Domingo de los Colorados"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bonaire, Sint Eustatius and Saba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Jean-Port-Joli"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cardona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:OfficersOfTheOrderOfCanada ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Geddy_Lee )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huddersfield"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Langen (Hessen)"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bol'shiye Dvory"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kerrie"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mirzapur"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosedale"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Corçà"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Laon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Methuen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  wdt:  <http://www.wikidata.org/prop/direct/>

SELECT  ?entity (year(?date) AS ?year)
WHERE
  { ?entityS  wdt:P569    ?date ;
              rdfs:label  ?entity
    FILTER ( datatype(?date) = xsd:dateTime )
    FILTER ( day(?date) = day(now()) )
    FILTER ( month(?date) = month(now()) )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AcademicsOfTheConservatoireDeParis ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Luigi_Cherubini )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tixkokob Municipality"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "71632946" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kłobuck"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Township of Washington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Popenguine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Witz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kulhudhuffushi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "8150463" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cettinge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Waterborne_Diseases>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Waterborne_Diseases>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tal'tsj"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mammoth Spring"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ilanz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zahlah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Redfield"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tana"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alikovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanBaritones ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Corey_Taylor )
  }
LIMIT   100
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  *
WHERE
  { ?s  rdf:type  dbpo:Animal ;
        ?p        ?o
  }
OFFSET  198000
LIMIT   9000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lalomanu"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gans"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "10034216" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:DisciplineGlobalMobileArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Bill_Nelson_(musician)> )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  dbpo:service  ?service
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  dbpo:service  ?service
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  dbprop:products  ?products
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Shuttle_Inc.>
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sukmanj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Bern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niedenstein"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Long Lurah"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dale City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Warren_Cuccurullo rdf:type ?type .
    dbpr:Warren_Cuccurullo ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Warren_Cuccurullo
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Christopher_Chaplin rdf:type ?x1 .
    dbpr:Christopher_Chaplin rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Christopher_Chaplin
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Christopher_Chaplin
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orachha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neustadt am Rübenberge"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Enna"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "旁岔泉"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Thai_Airways
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Thai_Airways
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Thai_Airways
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Thai_Airways
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Thai_Airways
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Thai_Airways
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Thai_Airways
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Thai_Airways
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Thai_Airways
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Thai_Airways
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Thai_Airways
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wooster"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ahlden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("1695-12-01-01") ) && ( ?date < xsd:date("1696-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fürth"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:FrenchDanceMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Dalida )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yangirabad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hotchkiss"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "49335951" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ソウル特別"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanFreestyleMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Debbie_Gibson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jesús María"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mont-le-Vignoble"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "treppiede"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "treppiede"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pöggstall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ラ・サルヴタ=ペラレス"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brittnau"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Eulàlia de Riuprimer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Noardburgum"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Achtmaal"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ebermannstadt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Río Negro"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Don" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Francisco" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Guerra" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Merino" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Regidor" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Preheminente" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "de" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "la" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "ciudad" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "de" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "Ciudad" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "Rodrigo" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "Juez" .
    ?person  foaf:name     ?name13 .
    ?name13  bif:contains  "Subdelegado" .
    ?person  foaf:name     ?name14 .
    ?name14  bif:contains  "de" .
    ?person  foaf:name     ?name15 .
    ?name15  bif:contains  "todas" .
    ?person  foaf:name     ?name16 .
    ?name16  bif:contains  "Rentas" .
    ?person  foaf:name     ?name17 .
    ?name17  bif:contains  "Reales" .
    ?person  foaf:name     ?name18 .
    ?name18  bif:contains  "Corregidor" .
    ?person  foaf:name     ?name19 .
    ?name19  bif:contains  "por" .
    ?person  foaf:name     ?name20 .
    ?name20  bif:contains  "de" .
    ?person  foaf:name     ?name21 .
    ?name21  bif:contains  "la" .
    ?person  foaf:name     ?name22 .
    ?name22  bif:contains  "Ciudad" .
    ?person  foaf:name     ?name23 .
    ?name23  bif:contains  "de" .
    ?person  foaf:name     ?name24 .
    ?name24  bif:contains  "calatayud" .
    ?person  foaf:name     ?name25 .
    ?name25  bif:contains  "su" .
    ?person  foaf:name     ?name26 .
    ?name26  bif:contains  "Partido" .
    ?person  foaf:name     ?name27 .
    ?name27  bif:contains  "Texto" .
    ?person  foaf:name     ?name28 .
    ?name28  bif:contains  "impreso" .
    ?person  foaf:name     ?name29 .
    ?name29  bif:contains  "Por" .
    ?person  foaf:name     ?name30 .
    ?name30  bif:contains  "quanto" .
    ?person  foaf:name     ?name31 .
    ?name31  bif:contains  "me" .
    ?person  foaf:name     ?name32 .
    ?name32  bif:contains  "hallo" .
    ?person  foaf:name     ?name33 .
    ?name33  bif:contains  "con" .
    ?person  foaf:name     ?name34 .
    ?name34  bif:contains  "Orden" .
    ?person  foaf:name     ?name35 .
    ?name35  bif:contains  "del" .
    ?person  foaf:name     ?name36 .
    ?name36  bif:contains  "SeÃor" .
    ?person  foaf:name     ?name37 .
    ?name37  bif:contains  "Marqués" .
    ?person  foaf:name     ?name38 .
    ?name38  bif:contains  "de" .
    ?person  foaf:name     ?name39 .
    ?name39  bif:contains  "la" .
    ?person  foaf:name     ?name40 .
    ?name40  bif:contains  "Fresneda" .
    ?person  foaf:name     ?name41 .
    ?name41  bif:contains  "Intendente" .
    ?person  foaf:name     ?name42 .
    ?name42  bif:contains  "del" .
    ?person  foaf:name     ?name43 .
    ?name43  bif:contains  "presente" .
    ?person  foaf:name     ?name44 .
    ?name44  bif:contains  "Reyno" .
    ?person  foaf:name     ?name45 .
    ?name45  bif:contains  "de" .
    ?person  foaf:name     ?name46 .
    ?name46  bif:contains  "Aragon" .
    ?person  foaf:name     ?name47 .
    ?name47  bif:contains  "dimanada" .
    ?person  foaf:name     ?name48 .
    ?name48  bif:contains  "de" .
    ?person  foaf:name     ?name49 .
    ?name49  bif:contains  "la" .
    ?person  foaf:name     ?name50 .
    ?name50  bif:contains  "Real" .
    ?person  foaf:name     ?name51 .
    ?name51  bif:contains  "Junta" .
    ?person  foaf:name     ?name52 .
    ?name52  bif:contains  "de" .
    ?person  foaf:name     ?name53 .
    ?name53  bif:contains  "Obras" .
    ?person  foaf:name     ?name54 .
    ?name54  bif:contains  "Bosques" .
    ?person  foaf:name     ?name55 .
    ?name55  bif:contains  "sobre" .
    ?person  foaf:name     ?name56 .
    ?name56  bif:contains  "la" .
    ?person  foaf:name     ?name57 .
    ?name57  bif:contains  "Veheda" .
    ?person  foaf:name     ?name58 .
    ?name58  bif:contains  "absoluta" .
    ?person  foaf:name     ?name59 .
    ?name59  bif:contains  "de" .
    ?person  foaf:name     ?name60 .
    ?name60  bif:contains  "toda" .
    ?person  foaf:name     ?name61 .
    ?name61  bif:contains  "especie" .
    ?person  foaf:name     ?name62 .
    ?name62  bif:contains  "de" .
    ?person  foaf:name     ?name63 .
    ?name63  bif:contains  "Caza" .
    ?person  foaf:name     ?name64 .
    ?name64  bif:contains  "Pesca"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ellison"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "10/4/1962-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Flying Fox"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kickabil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Velletri"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bitti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "察洛科德迪亚兹科瓦鲁比亚斯"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  (COUNT(?x))
WHERE
  { VALUES ?v { dbpo:Place dbpo:Person }
    ?x  rdf:type     owl:ObjectProperty ;
        rdfs:range   ?v ;
        rdfs:domain  ?v
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "1633-1633-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  type: <http://dbpedia.org/class/singers/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?nombre ?lugar
WHERE
  { ?singer  rdf:type           type:Concept ;
             rdfs:label         ?nombre ;
             dbprop:birthPlace  ?lugar
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Vincent-de-Durfort"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Havlíčkův Brod"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "30742199" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ice"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suloq"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sochaczew"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bollullos de la Mitación"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zarka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Viladecans"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winnersh"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bandeirantes"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lachute"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vaihingen an der Enz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Walzbachtal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Michendorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heinsburg"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Exshaw"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greeley"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Itaboraí"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "88662134" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Silver Spring"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glorieta"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crofton"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yelm"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Westville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brie-Comte-Robert"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terwan"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Budishche"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Błażejewice"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Рубанщина"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Owasso"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shchekotovichi"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mysen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adair"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paulhan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "17242899" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Primor'ye"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "East Ham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villa Altagracia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "49272874" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "特劳恩河畔魏斯基兴"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Langedrag"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ворсма"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Butchino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Intibucá"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "卫拉"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Liaillay"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stanton"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "87236258" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staryy Krym"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St.-Malo-en-Donziois"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kerm"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kruteleva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Troistorrents"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kul'tprosvet"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santo Tomás"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Truro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beifang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bernkastel-Kues"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cabanes De Esgueva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Obciążalność prądowa górnej sieci trakcyjnej"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Obciążalność prądowa górnej sieci trakcyjnej"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ilovetsj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mosetse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trostberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caleta Olivia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buckley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ghugg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mirassol D'Oeste"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Starigrad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hazenpot"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "モリアノ・ベネト"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Havelberg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Thomas_Frank_Durrant rdf:type ?x1 .
    dbpr:Thomas_Frank_Durrant rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Thomas_Frank_Durrant
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Thomas_Frank_Durrant
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "[la ]comunanza della ragione hegel e il linguaggio fiorinda li vigni"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "[la ]comunanza della ragione hegel e il linguaggio fiorinda li vigni"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Healesville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "73972947" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1965-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tenna"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Цесис"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gonzales"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schorndorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rogovskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Königsee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ampurias"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seogwipo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Emsdetten"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torremolinos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Artificial_Organs>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Artificial_Organs>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rakvere"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { <http://dbpedia.org/page/Eugenia>
              rdf:type     ?Concept ;
              dct:subject  ?subject
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Velizh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huai'an"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chauny"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Carlos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Levice"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adamsburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kutas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Ruwais"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rânes"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Middelburg"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint Pierre og Miquelon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Aortic_Valve>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Aortic_Valve>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Forest Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pentre Broughton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "设菲尔德"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ParticipantsInBritishRealityTelevisionSeries ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Dollar_(band)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nain"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tal'tsj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Voehringen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hohen Neuendorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kondon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Les Martres-de-Veyre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AfricanAmericanWoodwindMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Gerald_Albright )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kunevichi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Мейсон"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pedro Abad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Douglasville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sharon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cajueiro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luzern"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rakhtino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nasirabad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Knjase-Wolkonskoje"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Blanckart Frs carte de visite met portret van twee kleine kinderen sd"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Blanckart Frs carte de visite met portret van twee kleine kinderen sd"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gavrilova"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hejnice"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Faenza"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:GermanComposers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Karlheinz_Stockhausen )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meerut"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Estepona"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winter Park"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vallan"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Djurtjuli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Figueres"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?x ?o
WHERE
  { ?x  rdf:type              dbpo:Building ;
        dbprop:functionalStatus  ?o
  }
LIMIT   40
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vlaardingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anzeme"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kankakee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valmadrera"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verran"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Großerlach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palafolls"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dourgne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Würflach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "28019171" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Siwa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kankowo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lipari"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  pos:  <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?location ?capital ?lat ?long
WHERE
  { ?location  rdf:type     dbpo:Location ;
              foaf:name     "columbia"@en ;
              dbpo:capital  _:b0 .
    _:b0      pos:lat       ?lat ;
              pos:long      ?long ;
              dbprop:name   ?capital
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromShenandoah,Iowa> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:The_Everly_Brothers )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nasiegniewo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  ?x ?y
WHERE
  { ?x  rdf:type     foaf:Person ;
        rdf:type     dbpo:ComicsCharacter ;
        dbpo:powers  ?y
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gilching"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "2000-06-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hurtanmaa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Panevezys"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ilkeston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Beauzeil"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Markgröningen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verkhniye Nemykari"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Pine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tat-Kitnya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ostereistedt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balma"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Acetophenones>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Acetophenones>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "斯特雷萨"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanPsychedelicRockMusicGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Sopwith_Camel_(band)> )
  }
LIMIT   100
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Astronomy>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Astronomy>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

SELECT DISTINCT  ?c ?label ?inCountry
WHERE
  { ?c  rdfs:label  ?label
    FILTER ( ( ( lang(?label) = "" ) || langMatches(lang(?label), "en") ) && ( ?label = "Pachuca"@en ) )
      { ?c  rdf:type      dbpo:City ;
            dbpo:country  ?inCountry
      }
    UNION
      { ?c  rdf:type      url:City ;
            dbpo:country  ?inCountry
      }
    UNION
      { ?c  rdf:type      umbelrc:City ;
            dbpo:country  ?inCountry
      }
    UNION
      { ?c  rdf:type      url:City ;
            dbpo:country  ?inCountry
      }
    UNION
      { ?c  rdf:type      dby:City108524735 ;
            dbpo:country  ?inCountry
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goryachevodsky"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Siavash_Shams rdf:type ?x1 .
    dbpr:Siavash_Shams rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Siavash_Shams
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Siavash_Shams
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dimmitt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manyanet"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "56837793" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Netzschkau"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Коркинцы"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?p
WHERE
  { ?s  rdf:type  dbpo:Sales ;
        ?p        ?o
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lázaro Cárdenas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Castle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?p
WHERE
  { ?s  rdf:type  dbpo:Case ;
        ?p        ?o
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tersalgaj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Luis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quilpué"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "51015056" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rzhev"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fallbrook"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "库瑞齐"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Casale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baker City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("2005-05-01-01") ) && ( ?date < xsd:date("2006-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monza"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:XC60  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:XC60  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:XC60  dbpo:industry  ?industry }
    OPTIONAL
      { dbpr:XC60  dbpo:numberOfEmployees  ?numberOfEmployees }
    OPTIONAL
      { dbpr:XC60  dbpo:foundingYear  ?foundingYear }
    OPTIONAL
      { dbpr:XC60  dbpo:foundingYear  ?foundingYear }
    OPTIONAL
      { dbpr:XC60  dbpo:service  ?service }
    OPTIONAL
      { dbpr:XC60  dbpo:service  ?service }
    OPTIONAL
      { dbpr:XC60  dbprop:products  ?products }
    OPTIONAL
      { dbpr:XC60  dbprop:practiceAreas  ?practiceAreas }
    OPTIONAL
      { dbpr:XC60  dbpo:type  ?type }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rio Verde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "帕姆代尔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "bile"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "bile"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Jean_Vilar rdf:type ?x1 .
    dbpr:Jean_Vilar rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Jean_Vilar
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Jean_Vilar
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Вукари"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Anthranilate_Phosphoribosyltransferase>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Anthranilate_Phosphoribosyltransferase>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naousa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baldwinsville"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Tecumseth"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cala del Moral"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mariinskiy Posad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suzano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Virginia Beach"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Pedro de Gaíllos"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Idlib"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Takoma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Butanols>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Butanols>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Urluk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AustralianMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Lior )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Turkmenabat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Blue_Coat_Systems
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Blue_Coat_Systems
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Blue_Coat_Systems
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Blue_Coat_Systems
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Blue_Coat_Systems
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Blue_Coat_Systems
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Blue_Coat_Systems
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Blue_Coat_Systems
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Blue_Coat_Systems
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Blue_Coat_Systems
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Blue_Coat_Systems
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palmas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Acute_Disease>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Acute_Disease>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bakury"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almerimar"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mürzzuschlag"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "237378869" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yekhe-Tsakir"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matfors"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dera Ghāzi Khān"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Timişoara"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Albrecht Dürer Fest auf dem Wiener Kahlenberg"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Albrecht Dürer Fest auf dem Wiener Kahlenberg"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Qujing"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Świdnica Polska"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromWyckoff,NewJersey> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Joe_Jonas )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "5301367" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rugby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wendlingen am Neckar"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "87103640" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niskala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Loano"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gipf-Oberfrick"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pompei"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "47568354" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:BebopSaxophonists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Johnny_Griffin )
  }
LIMIT   100
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?p
WHERE
  { ?s  rdf:type  dbpo:SpeedwayLeague ;
        ?p        ?o
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fuentepinilla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bräunlingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harsefeld"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?language ?topic ?abstract ?thumbnail
WHERE
  { ?language  rdf:type  dbpo:Language
    OPTIONAL
      { ?language  dbpo:abstract  ?abstract
        FILTER ( ( lang(?abstract) = "" ) || ( lang(?abstract) = "es" ) )
      }
    OPTIONAL
      { ?language  dbpo:abstract  ?abstract
        FILTER ( ( lang(?abstract) = "" ) || ( lang(?abstract) = "es" ) )
      }
    OPTIONAL
      { ?language  dbpo:thumbnail  ?thumbnail }
      { ?language  dbpo:iso6391Code  ?iso
        FILTER ( str(?iso) = "nl" )
        ?language  foaf:isPrimaryTopicOf  ?topic
      }
    UNION
      { ?language  dbpo:iso6391Code  ?iso
        FILTER ( str(?iso) = "nld / dut" )
        ?language  foaf:isPrimaryTopicOf  ?topic
      }
    UNION
      { ?language  dbpo:iso6391Code  ?iso
        FILTER ( str(?iso) = "nld" )
        ?language  foaf:isPrimaryTopicOf  ?topic
      }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Norlina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanRockSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Everlast_(musician)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Interlachen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bahía Honda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bolshoy Bitaman"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Argyle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromNorthYork ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Geddy_Lee )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Vidal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Pearson_PLC
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Pearson_PLC
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Pearson_PLC
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Pearson_PLC
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Pearson_PLC
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Pearson_PLC
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Pearson_PLC
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Pearson_PLC
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Pearson_PLC
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Pearson_PLC
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Pearson_PLC
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Concepción"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Perthshire rdf:type ?x1 .
    dbpr:Perthshire rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Perthshire
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Perthshire
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dorf Tirol"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Livadia"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cavinti"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hereford"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "69282637" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baraawe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wellin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Lee_Kit rdf:type ?x1 .
    dbpr:Lee_Kit rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Lee_Kit  rdf:type  ?x1 }
    UNION
      { dbpr:Lee_Kit  rdfs:label  ?x2 }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Las Presas"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coatepec"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bulaysah"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lisichansk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yauco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Nissan_Leaf
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Nissan_Leaf
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Nissan_Leaf
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Nissan_Leaf
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Nissan_Leaf
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Nissan_Leaf
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Nissan_Leaf
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Nissan_Leaf
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Nissan_Leaf
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Nissan_Leaf
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Nissan_Leaf
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crater Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:ParticipantsInAmericanRealityTelevisionSeries ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Debbie_Gibson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aujac"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "12218757" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skotterud"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "17556463" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lavaltrie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meaux"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sassuolo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ilan City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kholodnyye Ruch'i"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?country_name ?population
WHERE
  { ?country  rdf:type              dby:LandlockedCountries ;
              rdfs:label            ?country_name ;
              dbprop:populationEstimate  ?population
    FILTER ( ?population > 100000000 )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  *
WHERE
  { ?s  rdf:type  dbpo:Eukaryote ;
        ?p        ?o
  }
OFFSET  1314000
LIMIT   9000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Butucu"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oqaatsut"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eastsound"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waiblingen"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ボヤノボ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santanyí"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Ray_Bolger rdf:type ?x1 .
    dbpr:Ray_Bolger rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Ray_Bolger
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Ray_Bolger
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chula Vista"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heuvelland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Tjerk" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Heringa"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Compass_Minerals
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Compass_Minerals
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Compass_Minerals
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Compass_Minerals
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Compass_Minerals
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Compass_Minerals
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Compass_Minerals
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Compass_Minerals
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Compass_Minerals
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Compass_Minerals
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Compass_Minerals
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tangerang Selatan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Acu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Нижняя Иреть"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sorubi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nykvarn kommune"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hallett"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "12575995" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burbank"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grünsfeld"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puraque Ponta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tobar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanBaritones ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Corey_Taylor )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nenonpelto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dunvant"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "54254175" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Central_Africa>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Central_Africa>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Enna"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lizhma"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rawls"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suthang"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { <http://dbpedia.org/page/Child_Protective_Services>
              rdf:type     ?Concept ;
              dct:subject  ?subject
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuss"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gryn'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marchena"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mosses"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Anodontia>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Anodontia>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?prop
WHERE
  { ?originInstance
              rdf:type  owl:Thing .
    ?targetInstance
              rdf:type  dbpo:Image .
    ?originInstance
              ?prop     ?targetInstance
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Gerónimo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bradford West Gwillimbury"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Lucila del Mar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teesside County Borough"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zamora de Hidalgo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jarnac"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burchak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hemet"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hanau"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "エリアン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Golovanovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Manga"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ski"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "飯能"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pond"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seur Chamarkha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El'mus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ermesinde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lantenay"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nossa Senhora do Socorro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "73758542" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winter Park"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haren"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Forest District"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kleinau"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Żarów"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boutersem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Antigen-antibody_Reactions>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Antigen-antibody_Reactions>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waldachtal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Semiv'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brakel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwelm"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "torre de la iglesia"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "torre de la iglesia"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Übach-Palenberg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Llanes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khabozero"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sapiorny"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Bortezomib>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Bortezomib>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Summit"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lieskau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Filettole"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zwickau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dobrovăţ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mount Vista"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chufarovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Veselaya Roshcha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dinkelscherben"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:apple-touch-icon-precomposed rdf:type ?x1 .
    dbpr:apple-touch-icon-precomposed rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:apple-touch-icon-precomposed
                  rdf:type  ?x1
      }
    UNION
      { dbpr:apple-touch-icon-precomposed
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "克利潘"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Clovis"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuscaloosa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tahulandang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grafschaft"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Scottsdale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nauru"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naters"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Titu-Targ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soacha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Theize"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hoppers Crossing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "57745222" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "161912280" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "36925746" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lohra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Гардая"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Taunusstein"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Portret" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Matijevia" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Bo¡njaka"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brakpan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obermehler"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quakers Hill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villanueva de Valdegovía"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Petitpierre" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Max" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "dodischP"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "59467522" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "乌尔姆"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sandy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Linköping"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Benayeo"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nightcliff"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wudil"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Austin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uşak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "71297848" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lecompte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Point Pleasant"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Vrouw" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "apart"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lutsino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?company  rdf:type  dbpo:Company
    OPTIONAL
      {   { ?company  dbprop:logo  ?logo
            FILTER isIRI(?logo)
          }
        UNION
          { ?company  foaf:depiction  ?logo
            FILTER isIRI(?logo)
          }
      }
    OPTIONAL
      { ?company  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "EN")
      }
    OPTIONAL
      { ?company  gsp:lat   ?latitude ;
                  gsp:long  ?longitude
      }
    OPTIONAL
      { ?company  dbpo:foundingDate  ?foundingDate }
    OPTIONAL
      { ?company  foaf:homepage  ?homepage }
    OPTIONAL
      { ?company  dbprop:symbol  ?stockSymbol }
    OPTIONAL
      { ?company  dbpo:subsidiary  ?subsidiaryPage }
    OPTIONAL
      { ?company  dbprop:name  ?name }
  }
OFFSET  2480
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lachapelle-sous-Aubenas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huntley"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "310659153" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ulan Sum"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Margraten"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ポキプシー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Motozintla de Mendoza"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korsnas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shah Alam"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leuchtenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kline"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { <http://dbpedia.org/page/Absorption>
              rdf:type     ?Concept ;
              dct:subject  ?subject
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Regensburg"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalisusu"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ташкурган"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huncote"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "44300351" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ugritsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Duarte"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khot'yanj"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Qantarat al Fahs"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "79024744" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Gerrit Kamphorst Gijsje Kamphorst en Peter"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Gerrit Kamphorst Gijsje Kamphorst en Peter"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guayabal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sen'kino-Sekerino"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weinböhla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mechelen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  gag-ontology: <http://geo.linkedopendata.gr/gag/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  ?id ?municipalityName ?homepage
WHERE
  { ?m  rdf:type              gag-ontology:Δήμος ;
        gag-ontology:έχει_κωδικό  ?id ;
        gag-ontology:έχει_επίσημο_όνομα  ?municipalityName
    OPTIONAL
      { ?m  foaf:homepage  ?homepage }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Microsoft_India
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Microsoft_India
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Microsoft_India
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Microsoft_India
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Microsoft_India
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Microsoft_India
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Microsoft_India
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Microsoft_India
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Microsoft_India
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Microsoft_India
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Microsoft_India
                  dbpo:type  ?type
      }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?language ?topic ?abstract ?thumbnail
WHERE
  { ?language  rdf:type  dbpo:Language
    OPTIONAL
      { ?language  dbpo:abstract  ?abstract
        FILTER ( ( lang(?abstract) = "" ) || ( lang(?abstract) = "es" ) )
      }
    OPTIONAL
      { ?language  dbpo:abstract  ?abstract
        FILTER ( ( lang(?abstract) = "" ) || ( lang(?abstract) = "es" ) )
      }
    OPTIONAL
      { ?language  dbpo:thumbnail  ?thumbnail }
      { ?language  dbpo:iso6391Code  ?iso
        FILTER ( str(?iso) = "" )
        ?language  foaf:isPrimaryTopicOf  ?topic
      }
    UNION
      { ?language  dbpo:iso6391Code  ?iso
        FILTER ( str(?iso) = "syr" )
        ?language  foaf:isPrimaryTopicOf  ?topic
      }
    UNION
      { ?language  dbpo:iso6391Code  ?iso
        FILTER ( str(?iso) = "syr" )
        ?language  foaf:isPrimaryTopicOf  ?topic
      }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "クラランス"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Juriquilla"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Itaiópolis"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Imus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Angioid_Streaks>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Angioid_Streaks>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Whitesburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zavoy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kamen'-Rybolov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "科洛屯"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villers-Cotterêts"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grafschaft"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Knock"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?label
WHERE
  { {   { dbpr:Scotland
                    rdfs:label  ?label
          FILTER ( lang(?label) = "fr" )
        }
      UNION
        { OPTIONAL
            { dbpr:Scotland
                        rdfs:label  ?noLabelInThatLang
              FILTER ( lang(?noLabelInThatLang) = "fr" )
            }
          FILTER ( ! bound(?noLabelInThatLang) )
          dbpr:Scotland
                    rdfs:label  ?label
          FILTER ( lang(?label) = "en" )
        }
    }
    OPTIONAL
      { dbpr:Scotland
                  rdf:type  ?type
        FILTER ( ( ( ?type = dbpo:Agent ) || ( ?type = dbpo:Place ) ) || ( ?type = <http://www.opengis.net/gml/_Feature> ) )
      }
    FILTER ( ! bound(?type) )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?s  rdf:type       dbpo:Name ;
        dbpo:abstract  ?a ;
        rdfs:label     ?l
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guignen"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gananoque"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Welbsleben"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dokuchayevskij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ETHZurichAlumni ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Carlos_Kleiber )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/Wedding_%28Berlin%29> rdf:type ?x1 .
    <http://dbpedia.org/resource/Wedding_%28Berlin%29> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/Wedding_%28Berlin%29>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/Wedding_%28Berlin%29>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Okmulgee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pellworm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ripley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Woodbridge"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "McKinney"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?b ?v0
WHERE
  { { ?b  rdf:type  wde:Q11173 }
    OPTIONAL
      { ?b  rdfs:label  ?v0 }
  }
OFFSET  110000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Alice_Cooper rdf:type ?type .
    dbpr:Alice_Cooper ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Alice_Cooper
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elbow Lake, City of"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Piscataway Township"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Untergrafendorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mezapa"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?thumb ?entity ?desc ?label ?pic
WHERE
  { ?entity  rdf:type       dbpo:Sport ;
             dbpo:abstract  ?desc ;
             rdfs:label     ?label
    OPTIONAL
      { ?entity  foaf:depiction  ?pic ;
                 dbpo:thumbnail  ?thumb
      }
    FILTER ( langMatches(lang(?desc), "en") && langMatches(lang(?label), "en") )
    ?desc  bif:contains  "'winter'"
  }
ORDER BY ?label
OFFSET  0
LIMIT   10000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marquartstein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novopol'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "27218380" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Akersloot"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pforzheim"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Khidr"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bagude"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "19680057" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "grimma eröffnung der ausstellung aktfotografie von günter rössler im kunsthaus eva mahn und günter rössler im gespräch"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "grimma eröffnung der ausstellung aktfotografie von günter rössler im kunsthaus eva mahn und günter rössler im gespräch"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Melsbroek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bonningstedt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Scarborough"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Michael Birkeland"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Michael Birkeland"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1866-05-04"^^xsd:date )
    FILTER ( ?deathDate > "1866-05-04"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Tuileries" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Figure" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "ie" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Pomone" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "par" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Gateaux" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "sic" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "photographie" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "Atget"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanBluesGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Bonnie_Raitt )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tala"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Lali"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Lali"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rio Preto da Eva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Walthall"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "14905133" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gold Coast"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Genis-Pouilly"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tamarite de Litera"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stadtteil Travemunde"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "267920293" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Harstad"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Harstad"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goobies Siding"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pfungstadt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosemount"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lacroix-Falgarde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "佐世保"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ilhas Molucas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ブレア"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tustin"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Casteil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Йокосука"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Machern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laholm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schijndel"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baskin"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kabir Kili"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chimay"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Bygning Kjørnes Sogndal"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Bygning Kjørnes Sogndal"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Geri"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Muskegon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nordwalde"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sayanogorsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Metairie"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "100081472" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skepplanda"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Ranbaxy_Laboratories
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mracaj"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Mars-du-Désert"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bechtheim"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Regenthal"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanPerformersOfChristianMusic ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Benny_Hester )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bunam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pfäfers"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "East Dunseith"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "61541619" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "27078395" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campitello di Fassa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lyzlovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santiago de Queretaro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wall Ferraz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fitchburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "43103529" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Levittown"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  dbpo:service  ?service
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  dbpo:service  ?service
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  dbprop:products  ?products
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { <http://dbpedia.org/resource/Mu_Sigma_Inc.>
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sainte-Croix-à-Lauze"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Cajon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Great Yarmouth"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Electronic_Amplifiers>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Electronic_Amplifiers>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frenchtown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verneuil-sur-Serre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?company  rdf:type  dbpo:Company
    OPTIONAL
      {   { ?company  dbprop:logo  ?logo
            FILTER isIRI(?logo)
          }
        UNION
          { ?company  foaf:depiction  ?logo
            FILTER isIRI(?logo)
          }
      }
    OPTIONAL
      { ?company  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "EN")
      }
    OPTIONAL
      { ?company  gsp:lat   ?latitude ;
                  gsp:long  ?longitude
      }
    OPTIONAL
      { ?company  dbpo:foundingDate  ?foundingDate }
    OPTIONAL
      { ?company  foaf:homepage  ?homepage }
    OPTIONAL
      { ?company  dbprop:symbol  ?stockSymbol }
    OPTIONAL
      { ?company  dbpo:subsidiary  ?subsidiaryPage }
    OPTIONAL
      { ?company  dbprop:name  ?name }
  }
OFFSET  3110
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Gregorio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mit'kovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:LatinJazzTrumpeters ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Roy_Hargrove )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lewes"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kinabatangan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Talangmuaracengal"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Alcohol_Amnestic_Disorder>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Alcohol_Amnestic_Disorder>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Robāţak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lake Oswego"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chertovaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cremona"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Markaryd"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atrachi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Un'ya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chulumani"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Langnau im Emmental"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?pageId ?coverFilename
WHERE
  { ?subject  dbpo:wikiPageID  ?pageId ;
              dbprop:name      ?name ;
              rdfs:label       ?label
      { ?subject  dbprop:artist  ?artist }
    UNION
      { ?subject  dbpo:artist  ?artist }
      { ?artist  foaf:name  "Queens Of The Stone Age"@en }
    UNION
      { ?artist  dbprop:name  "Queens Of The Stone Age"@en }
    ?subject  rdf:type      dbpo:Album ;
              dbprop:cover  ?coverFilename
    FILTER regex(?name, "Queens of the Stone Age", "i")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uryl'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "リーストン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arbela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Otterberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Le Vésinet"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?p
WHERE
  { ?s  rdf:type  dbpo:HumanGeneLocation ;
        ?p        ?o
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Cano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Artesa de Segre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fohr Island"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pekan Sekincan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hoek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:FemaleJazzMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Etta_James )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gotor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cagnes-sur-Mer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rainy River"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Rémi"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?movie
WHERE
  { ?movie  rdf:type      dbpo:Film ;
            dbpo:country  :Poland
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mount Vista"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Knäred"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "クロンバーグ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Octave_Octavian_Teodorescu rdf:type ?x1 .
    dbpr:Octave_Octavian_Teodorescu rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Octave_Octavian_Teodorescu
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Octave_Octavian_Teodorescu
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ul'yanovskij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Vidarabine_Phosphate>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Vidarabine_Phosphate>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abadiânia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ojai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Walkamin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Isenbüttel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kulai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "34456780" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verden (Aller)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harrisonville"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Juru"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lento"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Gurgaon  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Gurgaon  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Gurgaon  dbpo:industry  ?industry }
    OPTIONAL
      { dbpr:Gurgaon  dbpo:numberOfEmployees  ?numberOfEmployees }
    OPTIONAL
      { dbpr:Gurgaon  dbpo:foundingYear  ?foundingYear }
    OPTIONAL
      { dbpr:Gurgaon  dbpo:foundingYear  ?foundingYear }
    OPTIONAL
      { dbpr:Gurgaon  dbpo:service  ?service }
    OPTIONAL
      { dbpr:Gurgaon  dbpo:service  ?service }
    OPTIONAL
      { dbpr:Gurgaon  dbprop:products  ?products }
    OPTIONAL
      { dbpr:Gurgaon  dbprop:practiceAreas  ?practiceAreas }
    OPTIONAL
      { dbpr:Gurgaon  dbpo:type  ?type }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ban Kaeng"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nueva Palmira"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meycauayan City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bucine"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mahave"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Mafraq"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deurne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reshetilovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skhodnya"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kranidi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "73954666" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Martin-des-Olmes"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Udenhout"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colchester"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwarzwald"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Connellsville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "176723667" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zülpich"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leming"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amagasaki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "77737523" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?p
WHERE
  { ?p  <http:dbpedia.org/ontology/singer>  <http:dbpedia.org/resource/Wadih_El_Safi> ;
        rdf:type              <http:dbpedia.org/ontology/songs>
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  url:  <http://schema.org/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?team
WHERE
  { ?shl   rdf:type    dbpo:IceHockeyLeague ;
           rdfs:label  "Swedish Hockey League"@en .
    ?team  rdf:type    url:SportsTeams
      { ?team  dbprop:league  ?shl }
    UNION
      { ?team  dbpo:league  ?shl }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hůry"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canale"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

SELECT DISTINCT  ?c ?label ?inCountry
WHERE
  { ?c  rdfs:label  ?label
    FILTER ( ( ( lang(?label) = "" ) || langMatches(lang(?label), "en") ) && ( ?label = "Japan"@en ) )
      { ?c  rdf:type      dbpo:City ;
            dbpo:country  ?inCountry
      }
    UNION
      { ?c  rdf:type      url:City ;
            dbpo:country  ?inCountry
      }
    UNION
      { ?c  rdf:type      umbelrc:City ;
            dbpo:country  ?inCountry
      }
    UNION
      { ?c  rdf:type      url:City ;
            dbpo:country  ?inCountry
      }
    UNION
      { ?c  rdf:type      dby:City108524735 ;
            dbpo:country  ?inCountry
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wesel"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sipitang"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Guillaume"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Itzehoe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Swan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "4995492" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Macaza"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sheffield"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elbridge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>

SELECT  (COUNT(?obj) AS ?num)
WHERE
  { ?obj  rdf:type    dbpo:Film ;
          owl:sameAs  ?wikidataObj
    FILTER regex(str(?wikidataObj), "wikidata.org")
    ?obj  owl:sameAs  ?freebaseObj
    FILTER regex(str(?freebaseObj), "freebase")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wangyan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Casas Viejas"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:CanadianRockSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Geddy_Lee )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soledad de Doblado"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poplar Grove"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?label
WHERE
  { {   { dbpr:Hamburger
                    rdfs:label  ?label
          FILTER ( lang(?label) = "en" )
        }
      UNION
        { OPTIONAL
            { dbpr:Hamburger
                        rdfs:label  ?noLabelInThatLang
              FILTER ( lang(?noLabelInThatLang) = "en" )
            }
          FILTER ( ! bound(?noLabelInThatLang) )
          dbpr:Hamburger
                    rdfs:label  ?label
          FILTER ( lang(?label) = "en" )
        }
    }
    dbpr:Hamburger
              rdf:type  dbpo:Agent
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Raeren"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Landiras"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>

SELECT DISTINCT  ?label ?type
WHERE
  { ?type  rdfs:subClassOf  owl:Thing
    OPTIONAL
      { ?type  rdfs:label  ?label
        FILTER ( lang(?label) = "en" )
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stenlose"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fish"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rutland"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maruggio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Rosa Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Luffenham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crofton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  planet: <http://dbpedia.org/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  *
WHERE
  { <http://dbpedia.org/page/Sports_Psychology>
              dbpo:wikiPageRedirects  ?redirected .
    ?redirected  dbpo:wikiPageRedirects  ?concept
    OPTIONAL
      { ?concept <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>|<http://purl.org/dc/terms/subject> ?subject }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vimercate"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nienhagen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spelle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canton City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Коркинцы"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mogyoród"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St James"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kaarst"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weingarten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ビーティッヒハイム=ビッシンゲン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  ?name
WHERE
  { ?country  rdf:type   dbpo:Country .
    ?Country  foaf:name  ?name
  }
ORDER BY ?name
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Uraganas" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Klaipdoje" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Biros" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "tiltas" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Artras" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "e¡tokas"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adidovce"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Souvans"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Odenthal"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Denzlingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terlton"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gostinopol'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Maria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wyoming"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monza"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Netanja"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:BMW_i3  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:BMW_i3  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:BMW_i3  dbpo:industry  ?industry }
    OPTIONAL
      { dbpr:BMW_i3  dbpo:numberOfEmployees  ?numberOfEmployees }
    OPTIONAL
      { dbpr:BMW_i3  dbpo:foundingYear  ?foundingYear }
    OPTIONAL
      { dbpr:BMW_i3  dbpo:foundingYear  ?foundingYear }
    OPTIONAL
      { dbpr:BMW_i3  dbpo:service  ?service }
    OPTIONAL
      { dbpr:BMW_i3  dbpo:service  ?service }
    OPTIONAL
      { dbpr:BMW_i3  dbprop:products  ?products }
    OPTIONAL
      { dbpr:BMW_i3  dbprop:practiceAreas  ?practiceAreas }
    OPTIONAL
      { dbpr:BMW_i3  dbpo:type  ?type }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Излучинск"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Daly City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Douglas_Copland rdf:type ?x1 .
    dbpr:Douglas_Copland rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Douglas_Copland
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Douglas_Copland
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gardendale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pruszków"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Томашув-Мазовецкий"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wyzyce"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pushkin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Habichtswald"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Un'ya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "圣马科斯"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "261608668" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Agourai"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "conjuration formée dès le préréal par neuf représentans du peuple contre maximilien robespierre pour l'immoler en plein sénat [electronic resource]"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "conjuration formée dès le préréal par neuf représentans du peuple contre maximilien robespierre pour l'immoler en plein sénat [electronic resource]"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Rémy"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Farmville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Savy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Rob_Kerin rdf:type ?x1 .
    dbpr:Rob_Kerin rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Rob_Kerin
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Rob_Kerin
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dausa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Holzgerlingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berwick-upon-Tweed"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cherevkovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wagram"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Elav-like_Protein_4>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Elav-like_Protein_4>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Masny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pes'"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "31143347" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Attleboro"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "5261658" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castelldefels"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Texas City"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ocampo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suirish"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tinsuk"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "89801197" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Esbo"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Dental_Anesthesia>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Dental_Anesthesia>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?company  rdf:type  dbpo:Company
    OPTIONAL
      {   { ?company  dbprop:logo  ?logo
            FILTER isIRI(?logo)
          }
        UNION
          { ?company  foaf:depiction  ?logo
            FILTER isIRI(?logo)
          }
      }
    OPTIONAL
      { ?company  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "EN")
      }
    OPTIONAL
      { ?company  gsp:lat   ?latitude ;
                  gsp:long  ?longitude
      }
    OPTIONAL
      { ?company  dbpo:foundingDate  ?foundingDate }
    OPTIONAL
      { ?company  foaf:homepage  ?homepage }
    OPTIONAL
      { ?company  dbprop:symbol  ?stockSymbol }
    OPTIONAL
      { ?company  dbpo:subsidiary  ?subsidiaryPage }
    OPTIONAL
      { ?company  dbprop:name  ?name }
  }
OFFSET  2540
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kokhanj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "'s-Hertogenbosch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Renton"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aleksino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "下関"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sopron"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greencastle"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mordaga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hasslebo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint Inigoes"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Blackhawk_Network
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Blackhawk_Network
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Blackhawk_Network
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Blackhawk_Network
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Blackhawk_Network
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Blackhawk_Network
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Blackhawk_Network
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Blackhawk_Network
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Blackhawk_Network
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Blackhawk_Network
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Blackhawk_Network
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ubiraita"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Sallent Pirineos Fotografía"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Sallent Pirineos Fotografía"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Voloshka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kraków"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beauvoisin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Batanjung"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salem"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Biblis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santiago de Surco"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Remo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dhana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hail"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ocotlán"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Herington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>

SELECT  (COUNT(DISTINCT ?prop) AS ?count)
WHERE
  { ?originInstance
              rdf:type  wde:Q5 .
    ?targetInstance
              rdf:type  owl:Thing .
    ?originInstance
              ?prop     ?targetInstance
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marine Township"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hartington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gurh"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "34643062" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haapavesi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bystron'"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Richmond Hill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "8333008" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "鹿角"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Changlong"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Ismailiyah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Foloa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "卡拉恰伊-切尔克斯共和国"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?city ?population
WHERE
  { ?shl  rdf:type    dbpo:IceHockeyLeague ;
          rdfs:label  "Swedish Hockey League"@en
      { ?team  rdf:type  dbpo:HockeyTeam }
    UNION
      { ?team  rdf:type  dby:HockeyTeam108080386 }
      { ?team  dbprop:league  ?shl }
    UNION
      { ?team  dbpo:league  ?shl }
    ?team  dbprop:city  ?city
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lidköping Municipality"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fürth"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Les Champeaux"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Port Dickson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diablo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "McDonough"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belo Jardim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Miami International Airport"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?thumb ?entity ?desc ?label ?pic
WHERE
  { ?entity  rdf:type       dbpo:ProtectedArea ;
             dbpo:abstract  ?desc ;
             rdfs:label     ?label
    OPTIONAL
      { ?entity  foaf:depiction  ?pic ;
                 dbpo:thumbnail  ?thumb
      }
    FILTER ( langMatches(lang(?desc), "en") && langMatches(lang(?label), "en") )
    ?desc  bif:contains  "'protected'"
  }
ORDER BY ?label
OFFSET  0
LIMIT   10000
"
"PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?b ?v0
WHERE
  { { ?b  rdf:type  wde:Q11173 }
    OPTIONAL
      { ?b  skos:prefLabel  ?v0 }
  }
OFFSET  25000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Primor'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Osteras"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Forestdale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klyuchevsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cachí"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dietenhofen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Golegã"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gimje"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?b ?v0
WHERE
  { { ?b  rdf:type  wde:Q11173 }
    OPTIONAL
      { ?b  rdfs:label  ?v0 }
  }
OFFSET  146000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ksar El Boukhari"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shelby"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?p
WHERE
  { ?s  rdf:type  dbpo:MusicGenre ;
        ?p        ?o
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Exshaw"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naumburg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monkstown"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castiglione a Casauria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Susegana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "吹田"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AfricanAmericanSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Keith_Washington )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tower City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Machulishche"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nogosari"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Lockheed_Martin
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Lockheed_Martin
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Lockheed_Martin
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Lockheed_Martin
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Lockheed_Martin
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Lockheed_Martin
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Lockheed_Martin
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Lockheed_Martin
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Lockheed_Martin
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Lockheed_Martin
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Lockheed_Martin
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vrå"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jiaxing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malibu"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Emtricitabine>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Emtricitabine>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Hans_Grundig rdf:type ?x1 .
    dbpr:Hans_Grundig rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Hans_Grundig
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Hans_Grundig
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:SlideGuitarists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Joe_Perry_(musician)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tjolling"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Machacamarca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nesterow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nismes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mendu"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beixinqiao"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korshikovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Даровая"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/Salford,_Greater_Manchester> rdf:type ?x1 .
    <http://dbpedia.org/resource/Salford,_Greater_Manchester> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/Salford,_Greater_Manchester>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/Salford,_Greater_Manchester>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Souk Ahras"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coatlán del Río"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Martin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Etytej"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Södertälje"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Foça"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huntington Beach"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Concord"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "99948371" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Silverton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chandauli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greeley Center"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Biguglia"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baujanga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dasing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nezahualcóyotl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Werdohl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kefar Adummim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "32159674" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanFolkSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Bonnie_Raitt )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Readington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴレッド"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kondinin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campaña"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bars-See"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leg Tarnowski"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Gil_Shaham rdf:type ?type .
    dbpr:Gil_Shaham ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Gil_Shaham
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Calvià"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Pala_Narayanan_Nair rdf:type ?x1 .
    dbpr:Pala_Narayanan_Nair rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Pala_Narayanan_Nair
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Pala_Narayanan_Nair
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:IgboMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Leo_the_Lion_(British_singer)> )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "22171519" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nimaj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coulta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coisevaux"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?band ?person
WHERE
  { ?band  rdf:type         dbpo:Band ;
           dbpo:bandMember  ?person
  }
ORDER BY ?band
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sefton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "League City"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baytown"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bourgoin-Jallieu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trzemoszna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "195764159" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zimmern ob Rottweil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dergachi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernorud"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mandi Dabwali"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koirinoya"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Davidson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?dataProperty ?value
WHERE
  { wde:Q1943928  ?dataProperty  ?value
      { ?dataProperty
                  rdf:type  owl:DatatypeProperty
      }
    UNION
      { ?dataProperty
                  rdf:type  rdf:Property
      }
  }
ORDER BY ?dataProperty
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roanoke Rapids"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villa La Angostura"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "阿克隆"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reston"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dachau"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Latina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parker"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Astrology>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Astrology>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("1700-01-01") ) && ( ?date < xsd:date("1701-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Point72_Asset_Management
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Point72_Asset_Management
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Point72_Asset_Management
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Point72_Asset_Management
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Point72_Asset_Management
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Point72_Asset_Management
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Point72_Asset_Management
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Point72_Asset_Management
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Point72_Asset_Management
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Point72_Asset_Management
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Point72_Asset_Management
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barakat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tinaja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Millac"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Araruama"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puchały"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Шаффхаузен"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Japeri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "27202669" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bobrets"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "dinah washington september in the rain dinah washington"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "dinah washington september in the rain dinah washington"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Itaperuna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orsières"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gizhduvan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sinjai Utara"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "59126336" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Svara"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anyang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Story City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Porte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tres Leguas Mennonite Settlement"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Park Ridge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gostinopol'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Whittier"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Van Alstyne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elsloo"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zaanstad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?label ?lat ?long ?latd ?latm ?latns ?longd ?longm ?longew ?point
WHERE
  { dbpr:Food_Standards_Agency
              rdfs:label  ?label
    {   { dbpr:Food_Standards_Agency
                    rdf:type  dbpo:Place
        }
      UNION
        { dbpr:Food_Standards_Agency
                    rdf:type  <http://www.opengis.net/gml/_Feature>
        }
    }
    OPTIONAL
      { dbpr:Food_Standards_Agency
                  dbprop:latitude   ?lat ;
                  dbprop:longitude  ?long
      }
    OPTIONAL
      { dbpr:Food_Standards_Agency
                  dbprop:latd    ?latd ;
                  dbprop:latm    ?latm ;
                  dbprop:latns   ?latns ;
                  dbprop:longd   ?longd ;
                  dbprop:longm   ?longm ;
                  dbprop:longew  ?longew
      }
    OPTIONAL
      { dbpr:Food_Standards_Agency
                  grs:point  ?point
      }
    FILTER ( lang(?label) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?thumb ?entity ?desc ?label ?pic
WHERE
  { ?entity  rdf:type       dbpo:WorldHeritageSite ;
             dbpo:abstract  ?desc ;
             rdfs:label     ?label
    OPTIONAL
      { ?entity  foaf:depiction  ?pic ;
                 dbpo:thumbnail  ?thumb
      }
    FILTER ( langMatches(lang(?desc), "en") && langMatches(lang(?label), "en") )
    ?desc  bif:contains  "'china' AND 'great'"
  }
ORDER BY ?label
OFFSET  0
LIMIT   10000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Odda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mitkirej"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Östringen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moraine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bentwisch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "110226123" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waioeka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Делисьяс"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sikertan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?company  rdf:type  dbpo:Company
    OPTIONAL
      {   { ?company  dbprop:logo  ?logo
            FILTER isIRI(?logo)
          }
        UNION
          { ?company  foaf:depiction  ?logo
            FILTER isIRI(?logo)
          }
      }
    OPTIONAL
      { ?company  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "EN")
      }
    OPTIONAL
      { ?company  gsp:lat   ?latitude ;
                  gsp:long  ?longitude
      }
    OPTIONAL
      { ?company  dbpo:foundingDate  ?foundingDate }
    OPTIONAL
      { ?company  foaf:homepage  ?homepage }
    OPTIONAL
      { ?company  dbprop:symbol  ?stockSymbol }
    OPTIONAL
      { ?company  dbpo:subsidiary  ?subsidiaryPage }
    OPTIONAL
      { ?company  dbprop:name  ?name }
  }
OFFSET  2520
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cullman"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Panipat"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maricopa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reposaari"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "チャンドラー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bukakata"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ere"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "グロジスク・マゾビエツキ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cherepanovskiy Raion"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ruguj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "ildstål"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "ildstål"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Panjuana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Westminster"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Geiger"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wynne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Voghera"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "skuleelevar sunnmøre fylkesskule"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "skuleelevar sunnmøre fylkesskule"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?label
WHERE
  { {   { dbpr:Birds_Eye
                    rdfs:label  ?label
          FILTER ( lang(?label) = "fr" )
        }
      UNION
        { OPTIONAL
            { dbpr:Birds_Eye
                        rdfs:label  ?noLabelInThatLang
              FILTER ( lang(?noLabelInThatLang) = "fr" )
            }
          FILTER ( ! bound(?noLabelInThatLang) )
          dbpr:Birds_Eye
                    rdfs:label  ?label
          FILTER ( lang(?label) = "en" )
        }
    }
    OPTIONAL
      { dbpr:Birds_Eye
                  rdf:type  ?type
        FILTER ( ( ( ?type = dbpo:Agent ) || ( ?type = dbpo:Place ) ) || ( ?type = <http://www.opengis.net/gml/_Feature> ) )
      }
    FILTER ( ! bound(?type) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Newton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castelldefels"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPopSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Amy_Grant )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chagarotar"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "88026962" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "61636780" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burmis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zawiercie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dissington Red House"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "グラッドウィン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Municipio de Manalapan"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chelema"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Quintin"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nead"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  vrank: <http://purl.org/voc/vrank#>

SELECT DISTINCT  ?artist ?dboStartYear ?dboEndYear (( ?hasRank / ?rankValue ) AS ?v)
FROM <http://dbpedia.org>
FROM <http://people.aifb.kit.edu/ath/#DBpedia_PageRank>
WHERE
  { ?artist  rdf:type              dbpo:MusicalArtist ;
             dbpo:activeYearsStartYear  ?dboStartYear ;
             vrank:hasRank         ?hasRank ;
             vrank:rankValue       ?rankValue
    OPTIONAL
      { ?artist  dbpo:activeYearsEndYear  ?dboEndYear }
  }
OFFSET  5
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Togiak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1879-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schrobenhausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Newnan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jijan"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Camboso"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "51867350" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zemetcheno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Holmlia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Golden Grove"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sargi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khogot"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "46919851" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "12306537" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?person  rdf:type        dbpo:Person ;
             dbpo:birthDate  ?birth
    FILTER ( ?birth = "1993-09-15"^^xsd:date )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sebago Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Charleroi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cottonwood Shores"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Égly"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vidauban"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adelschlag"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "32232312" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bijsk"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Botoma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "pleurothallis excavata schltr"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "pleurothallis excavata schltr"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oxkutzcab"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chatenay-Mâcheron"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tawern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?p
WHERE
  { ?s  rdf:type  dbpo:Noble ;
        ?p        ?o
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Radebeul"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?p
WHERE
  { ?s  rdf:type  dbpo:SnookerWorldRanking ;
        ?p        ?o
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "22859340" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AustralianPeopleOfIsraeliDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Lior )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vrigne-aux-Bois"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "49186368" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mockrehna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:CanadianCountryRockMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jim_Cuddy )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grover Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "21124902" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Okongo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Folles"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wodzislaw"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Embu-Guacu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sorzuy"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fastnas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lake Marmal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wasen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Doetinchem"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laholm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ban Rangsit"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "维默比"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Chamas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Laer"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puente de Ixtla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "ortha an tinnis imlinn"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "ortha an tinnis imlinn"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sanger"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Longjumeau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Лез О-де-Ше"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "2467099" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Blum" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "und" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Maeder" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "beim" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Filmen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palomares"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Arsphenamine>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Arsphenamine>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "56727762" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "76709390" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almuñécar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "マタロー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:IGATE  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:IGATE  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:IGATE  dbpo:industry  ?industry }
    OPTIONAL
      { dbpr:IGATE  dbpo:numberOfEmployees  ?numberOfEmployees }
    OPTIONAL
      { dbpr:IGATE  dbpo:foundingYear  ?foundingYear }
    OPTIONAL
      { dbpr:IGATE  dbpo:foundingYear  ?foundingYear }
    OPTIONAL
      { dbpr:IGATE  dbpo:service  ?service }
    OPTIONAL
      { dbpr:IGATE  dbpo:service  ?service }
    OPTIONAL
      { dbpr:IGATE  dbprop:products  ?products }
    OPTIONAL
      { dbpr:IGATE  dbprop:practiceAreas  ?practiceAreas }
    OPTIONAL
      { dbpr:IGATE  dbpo:type  ?type }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Loosdrecht"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mubarak Al-Abdullah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colombey-Les-Deux-Eglises"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:FemaleRockSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Neko_Case )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Olpe"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abercwmboi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oinasjärvi"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sidcup"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "19688005" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kobern-Gondorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oselya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Стар. Сундырь"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Island Park"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pyszczyn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dolní Ředice"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/MusiciansFromBoston,Massachusetts> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jenny_Reynolds )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cortona"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nohfelden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hopsten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Porteña"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Azul"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Acclimatization>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Acclimatization>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wèlla Sofon Gari"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karatsalmi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Otterwisch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mendu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hazerswoude-Rijndijk"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vorungi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromManila ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Lea_Salonga )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Presidente Figueiredo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ChildClassicalMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Wolfgang_Amadeus_Mozart )
  }
LIMIT   100
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  *
WHERE
  { ?s  rdf:type  dbpo:Eukaryote ;
        ?p        ?o
  }
OFFSET  1188000
LIMIT   9000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Olava Holter"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Olava Holter"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gröditz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Madera"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Dürrenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Tesco_Plc
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Tesco_Plc
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Tesco_Plc
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Tesco_Plc
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Tesco_Plc
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Tesco_Plc
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Tesco_Plc
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Tesco_Plc
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Tesco_Plc
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Tesco_Plc
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Tesco_Plc
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Каван"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Chicago"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kaaawa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Traunreut"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zeitz"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tinley Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Drexel Heights"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasnoselj"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ponyatovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Iron"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Gregorio"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tri Klyucha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Usulután"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chërnyy Verkh"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Catia La Mar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サン・マルコス・ウイツィルシンゴ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Javea"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Сближението на христианските църкви"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Сближението на христианските църкви"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?p
WHERE
  { ?s  rdf:type  dbpo:Planet ;
        ?p        ?o
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

CONSTRUCT 
  { 
    ?village rdf:type dbpo:Village .
  }
WHERE
  { SELECT  ?village
    WHERE
      { { SELECT  ?village
          WHERE
            { GRAPH <http://dbpedia.org>
                { ?village  rdf:type      dbpo:Village ;
                            dbpo:country  ?country
                }
            }
          GROUP BY ?village
          HAVING ( COUNT(DISTINCT ?country) > 1 )
        }
      }
    ORDER BY ASC(?village)
  }
OFFSET  20
LIMIT   5
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villiers-sur-Marne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vaksdal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Healthcare_Time_Out>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Healthcare_Time_Out>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mortsel"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ksti"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St.-Pee-Sur-Nivelle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "87411562" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tax"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tenancingo de Degollado"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/MusicalGroupsFromBoston,Massachusetts> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Boys_Like_Girls )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Avold"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Glenmark_Pharmaceuticals
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?company  rdf:type  dbpo:Company
    OPTIONAL
      {   { ?company  dbprop:logo  ?logo
            FILTER isIRI(?logo)
          }
        UNION
          { ?company  foaf:depiction  ?logo
            FILTER isIRI(?logo)
          }
      }
    OPTIONAL
      { ?company  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "EN")
      }
    OPTIONAL
      { ?company  gsp:lat   ?latitude ;
                  gsp:long  ?longitude
      }
    OPTIONAL
      { ?company  dbpo:foundingDate  ?foundingDate }
    OPTIONAL
      { ?company  foaf:homepage  ?homepage }
    OPTIONAL
      { ?company  dbprop:symbol  ?stockSymbol }
    OPTIONAL
      { ?company  dbpo:subsidiary  ?subsidiaryPage }
    OPTIONAL
      { ?company  dbprop:name  ?name }
  }
OFFSET  2060
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "American Fork"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ambatolampy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  url:  <http://schema.org/>

SELECT  ?amazon ?country ?abstract
WHERE
  { ?amazon   rdf:type       url:RiverBodyOfWater ;
              rdfs:label     "Tempisque River" ;
              dbpo:country   ?country .
    ?country  dbpo:abstract  ?abstract
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Piraí"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chikhachevo"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Журавушка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Gina" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Lollobrigida" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "met" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "aanstaande" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "echtgenoot" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "George" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Kaufman" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "in" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "Geneve"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "1615-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Goldman_Sachs
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Goldman_Sachs
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Goldman_Sachs
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Goldman_Sachs
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Goldman_Sachs
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Goldman_Sachs
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Goldman_Sachs
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Goldman_Sachs
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Goldman_Sachs
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Goldman_Sachs
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Goldman_Sachs
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heinoniemi"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suyenga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Krigsskip" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "SlÃgstad"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Silyanah"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?b ?v0
WHERE
  { { ?b  rdf:type  wde:Q11173 }
    OPTIONAL
      { ?b  rdfs:label  ?v0 }
  }
OFFSET  47000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hemiksem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Budishche"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colby"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shatesha"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "87184495" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tropinino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { OPTIONAL
      { dbpr:Metro_Bank
                  dbpo:abstract  ?abstract
        FILTER langMatches(lang(?abstract), "en")
      }
    OPTIONAL
      { dbpr:Metro_Bank
                  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { dbpr:Metro_Bank
                  dbpo:industry  ?industry
      }
    OPTIONAL
      { dbpr:Metro_Bank
                  dbpo:numberOfEmployees  ?numberOfEmployees
      }
    OPTIONAL
      { dbpr:Metro_Bank
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Metro_Bank
                  dbpo:foundingYear  ?foundingYear
      }
    OPTIONAL
      { dbpr:Metro_Bank
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Metro_Bank
                  dbpo:service  ?service
      }
    OPTIONAL
      { dbpr:Metro_Bank
                  dbprop:products  ?products
      }
    OPTIONAL
      { dbpr:Metro_Bank
                  dbprop:practiceAreas  ?practiceAreas
      }
    OPTIONAL
      { dbpr:Metro_Bank
                  dbpo:type  ?type
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sainte-Fortunade"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s
FROM <http://dbpedia.org>
WHERE
  { ?s  rdf:type  dbpo:MusicalArtist ;
        rdf:type  dbpo:Rock_music
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mateuszowo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bérchules"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "フトロヴォ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wendelin"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "韦瑟福德"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jinju"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rieti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "postkort kristiansund n"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "postkort kristiansund n"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "sanktanna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koewacht"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?b ?v0
WHERE
  { { ?b  rdf:type  wde:Q11173 }
    OPTIONAL
      { ?b  rdfs:label  ?v0 }
  }
OFFSET  137000
LIMIT   1000
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  *
WHERE
  { OPTIONAL
      { <http://dbpedia.org/page/Bathing_Beaches>
                  rdf:type  ?Concept
      }
    OPTIONAL
      { <http://dbpedia.org/page/Bathing_Beaches>
                  dct:subject  ?subject
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "bruce springsteen's america the people listening a poet singing robert coles"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "bruce springsteen's america the people listening a poet singing robert coles"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  *
WHERE
  { ?person  rdf:type  foaf:Person
      { ?person  dbprop:viaf  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    UNION
      { ?person  dbpo:viafId  ?viaf }
    ?person  foaf:depiction  ?picture
    FILTER ( str(?viaf) = "249516037" )
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikiPage }
    OPTIONAL
      { ?person  dbpo:language  ?language }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:deathPlace  ?deathPlace }
    OPTIONAL
      { ?person  dbpo:nationality  ?nationality }
    OPTIONAL
      { ?person  dbpo:abstract  ?abstract
        FILTER ( lang(?abstract) = "es" )
      }
    OPTIONAL
      { ?person  dbpo:notableWork  ?notableWork }
    OPTIONAL
      { ?person  dbpo:movement  ?movement }
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aghavnadzor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tochigi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?pageId ?coverFilename
WHERE
  { ?subject  dbpo:wikiPageID  ?pageId ;
              dbprop:name      ?name ;
              rdfs:label       ?label
      { ?subject  dbprop:artist  ?artist }
    UNION
      { ?subject  dbpo:artist  ?artist }
      { ?artist  foaf:name  "Bløf"@en }
    UNION
      { ?artist  dbprop:name  "Bløf"@en }
    ?subject  rdf:type      dbpo:Album ;
              dbprop:cover  ?coverFilename
    FILTER regex(?name, "Hier - Het Beste Van 20 Jaar BLØF", "i")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beddau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villefontaine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aduanas"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tharangambadi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bülach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Redan"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

CONSTRUCT 
  { 
    <http://vfringe.totl.net/2015/place/TheWoodlandBar> ?p1 ?x2 .
    <http://vfringe.totl.net/2015/place/TheWoodlandBar> ?p4 ?x3 .
    ?x3 rdf:type ?x5 .
    <http://vfringe.totl.net/2015/place/TheWoodlandBar> ?p7 ?x6 .
    ?x6 rdfs:label ?x8 .
  }
WHERE
  {   { <http://vfringe.totl.net/2015/place/TheWoodlandBar>
                  ?p1  ?x2
      }
    UNION
      { { <http://vfringe.totl.net/2015/place/TheWoodlandBar>
                    ?p4       ?x3 .
          ?x3       rdf:type  ?x5
        }
      }
    UNION
      { { <http://vfringe.totl.net/2015/place/TheWoodlandBar>
                    ?p7         ?x6 .
          ?x6       rdfs:label  ?x8
        }
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Serpaize"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carreras"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Douhaye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1983-01-01;end=1983-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:SwedishMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Sophie_Zelmani )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Tema rdf:type ?x1 .
    dbpr:Tema rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Tema  rdf:type  ?x1 }
    UNION
      { dbpr:Tema  rdfs:label  ?x2 }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?uri ?value ?label ?type ?typeName ?pic
WHERE
  { { ?uri  dbpo:weight  ?value }
    OPTIONAL
      { ?uri  dbpo:mass  ?value }
    OPTIONAL
      { ?uri  dbprop:mass  ?value }
    OPTIONAL
      { ?uri  dbprop:weight  ?value }
    ?uri  rdfs:label  ?label
    OPTIONAL
      { ?uri   rdf:type    ?type .
        ?type  rdfs:label  ?typeName
        FILTER ( lang(?typeName) = "en" )
      }
    OPTIONAL
      { ?uri  foaf:depiction  ?pic }
    FILTER ( ?value > 11235393.2584 )
    FILTER ( ?value < 11236516.8539 )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "クー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Higashiibaraki District"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Su-Psekh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borycz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kornice"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zapiola"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tlalmanalco de Velázquez"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromLincolnshire ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:John_Hurt )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Aegean"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pineda de Mar"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niemcy"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Social_identity
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bovicoio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wycombe"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Guard_dog
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Party  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hernando County"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nawi Mumbaj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pohja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Data_abstraction
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "リバモア"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Russian_Wolf
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haynesville"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beuzevillette"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ルツェルン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rauna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mooresville"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Odendaalsrus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolding"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Bhopal rdf:type ?x1 .
    dbpr:Bhopal rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Bhopal  rdf:type  ?x1 }
    UNION
      { dbpr:Bhopal  rdfs:label  ?x2 }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glarona"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PsychillMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Phutureprimitive )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ohonica"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Оливезе"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montord"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ohinewai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gohlen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Natchitoches"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тром-Аган"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stróże Małe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villers-Semeuse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lomme"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PolishAgnostics ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Arthur_Rubinstein )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Feriza"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poblado Sancti Petri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villemoustaussou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Water Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sashima District"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kutj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Domestic_Horse
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kuchyna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gramoteino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kul'sary"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Troisdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kohima"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Serbino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gilching"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:IndustrialMetalMusicalGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:The_Axis_of_Perdition )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sainte-Marie - Saint-Raphaël"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Springbrook"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prokoptsevskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monsanto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ouville"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Natural_phenomenon
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albany Creek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ar Cenisio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Philippine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Floresta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Rivera  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salvo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kadnikov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Minas de Riotinto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berlin Center"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Turza"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Jake_Burns rdf:type ?type .
    dbpr:Jake_Burns ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Jake_Burns
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montbizot"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Lupus_erythematodes
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "FottÃy" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "bÃnd" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "til"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ouwe Syl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lennox"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villargondran"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kukol'"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ürsfeld"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palm Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koloniya Lisovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stidsvig"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eklutna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbres1: <3))http://dbpedia.org/resource/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbres2: <))http://dbpedia.org/ontology/>

SELECT DISTINCT  ?r0
WHERE
  { ?x0       rdf:type  dbres2:Region .
    dbres1:Sassanid_Empire
              ?r0       ?x0
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Raglan"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dumbarton"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "科林斯堡"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Agua Dulce"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tlapeng"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mortsj"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  ?cityName ?name
WHERE
  { ?person  rdf:type         dbpo:Person ;
             dbpo:birthPlace  ?city ;
             foaf:name        ?name .
    ?city    rdfs:label       ?cityName
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stadskanaal"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/Sainte-Marie,_Martinique> rdf:type ?x1 .
    <http://dbpedia.org/resource/Sainte-Marie,_Martinique> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/Sainte-Marie,_Martinique>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/Sainte-Marie,_Martinique>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "León"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Piedrabuena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barsalogho"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hillview"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cervia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valff"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Redemption_song
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1900-01-01;end=1930-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Jubileumständsticka"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Jubileumständsticka"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pormpuraaw"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1890-01-01;end=1910-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Filadéli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Камерон"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shoals"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weinfelden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ornbau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Louisbourg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teapa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Keramsurka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?x2 ?x0 ?x6 ?r0 ?r31 ?r63
WHERE
  { ?x2       rdf:type  dbpo:Film .
    dbpr:Casablanca
              ?r0       ?x2 .
    ?x0       rdf:type  dbpo:Actor ;
              ?r31      <http://dbpedia.org/resource/Casablanca_(film)> .
    ?x6       rdf:type  dbpo:Person .
    dbpr:Roman_Empire
              ?r63      ?x6
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Правдинское"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Topper  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Таволжанка"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amt Neuhaus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hospitalet de Llobregat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rujene"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Topeka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lieser"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stovrovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?s))
WHERE
  {   { ?s  rdf:type  dbpo:Satellite }
    UNION
      { ?s  rdf:type  dbpo:ArtificialSatellite }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heusden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ellingstedt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Miranda do Norte"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Šaulių būrio vadas Salake Petras Šiaudinis m"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Šaulių būrio vadas Salake Petras Šiaudinis m"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nullarbor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "弗曼"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Veinikann" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "bopzilke"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marriott Los Angeles Downtown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chailland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pembroke Pines"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Мисурата"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "コタモバグ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:YagoPermanentlyLocatedEntity ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:The_Dooleys )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gusinoye Ozero"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staryy Oskol"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Saving  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?pageId ?coverFilename
WHERE
  { ?subject  dbpo:wikiPageID  ?pageId ;
              dbprop:name      ?name ;
              rdfs:label       ?label
      { ?subject  dbprop:artist  ?artist }
    UNION
      { ?subject  dbpo:artist  ?artist }
      { ?artist  foaf:name  "Söhne Mannheims"@en }
    UNION
      { ?artist  dbprop:name  "Söhne Mannheims"@en }
    ?subject  rdf:type      dbpo:Album ;
              dbprop:cover  ?coverFilename
    FILTER regex(?name, "Zion", "i")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alvor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "熊本"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sestrino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staraya Toyda Vtoraya"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Le Molay-Littry"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Junjung"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "セーニュ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Quiz  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Technical_University
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Richard_Lochhead rdf:type ?x1 .
    dbpr:Richard_Lochhead rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Richard_Lochhead
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Richard_Lochhead
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dyad'kovskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sédhiou"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goed"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Geyser"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guargacho"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Keisrinna" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Jelizaveta" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Petrovna"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orizaba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Нотак"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kajetanowice"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lopydino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cheburlj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ejutla de Crespo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rawls"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rudala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  planet: <http://dbpedia.org/>

SELECT DISTINCT  ?singer
WHERE
  { ?singer   rdf:type     dby:LebaneseFemaleSingers .
    <http://dbpedia.org/page/Category:Lebanese_Christians>
              dct:subject  ?singer
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mount Sterling"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ウォータールー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Esch-sur-Alzette"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "里弗代尔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Human_life_span
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Jennifer_Freeman rdf:type ?x1 .
    dbpr:Jennifer_Freeman rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Jennifer_Freeman
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Jennifer_Freeman
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reisterstown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Tom_Smiley rdf:type ?x1 .
    dbpr:Tom_Smiley rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Tom_Smiley
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Tom_Smiley
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Peking_Man
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Personal_History
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oyonnax"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blaubeuren"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Eugènia de Berga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atizapán De Zaragoza"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Partlow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernava"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cikampek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fortine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Igersheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Susa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fresnes-en-Woëvre"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yoshino"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "新松奇"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Knud" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Knudsen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  ?Title ?Author
WHERE
  { ?a     rdf:type     dbpo:Book ;
           rdfs:label   ?Title ;
           dbpo:Author  ?name .
    ?name  foaf:name    ?Author
  }
LIMIT   100
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Stallion
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kissimmee"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Rough_Play
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Dragon_Tattoo
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?title ?publication_year ?num_pages ?lang ?author
WHERE
  { ?title  rdf:type             dbpo:Book ;
            dbpo:englishPubDate  ?publication_year ;
            dbpo:numberOfPages   ?num_pages ;
            dbprop:language      ?lang ;
            dbpo:author          ?author
    FILTER regex(str(?lang), "English")
  }
ORDER BY ?author
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Siminchi"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Albany"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Traun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Sigmund_Freud
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lampung"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tineo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ashtj"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shortland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Presley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { <http://dbpedia.org/resource/Aline_Griffith,_Countess_of_Romanones>
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Opwyck"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Regina_Schleicher rdf:type ?x1 .
    dbpr:Regina_Schleicher rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Regina_Schleicher
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Regina_Schleicher
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sanatoriya Podmoskov'e"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mityana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Peresel'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "swamp"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "swamp"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fazenda Barragem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baillaigues"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diadema"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vytegra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromLutterworth ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Anthony_Thistlethwaite )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roupy"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Summit"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Eric_Odhiambo rdf:type ?x1 .
    dbpr:Eric_Odhiambo rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Eric_Odhiambo
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Eric_Odhiambo
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Treskovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gongshang Primary School"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buylesan"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yamanashi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Рыбинка"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosenberg"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Jim_Holder rdf:type ?x1 .
    dbpr:Jim_Holder rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Jim_Holder
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Jim_Holder
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Veje" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "KÃbenhavn"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hirsingue"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "pfingströserl"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "pfingströserl"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Punk_scene
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Enok"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pukekohe"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atlantic Mine"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carlyle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kangaroo Flat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Dormida"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Azyakul'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Courbevoie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Charles Robert Darwin"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Charles Robert Darwin"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1879-04-02"^^xsd:date )
    FILTER ( ?deathDate > "1879-04-02"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Le Petit-Quevilly"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=2005-12-01;end=2005-12-31-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Live_band
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:James_William_Bryan rdf:type ?x1 .
    dbpr:James_William_Bryan rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:James_William_Bryan
                  rdf:type  ?x1
      }
    UNION
      { dbpr:James_William_Bryan
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:GermanTelevisionPresenters ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Helene_Fischer )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Znamensk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { <http://dbpedia.org/resource/St._Anne_School,_Seattle,_Washington>
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beelerup"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanExperimentalGuitarists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Arto_Lindsay )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parkes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "الجورف"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Yahar Community 1"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malón"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:General_Stud_Book
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khenjan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Laurence
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ili"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Piła"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?s ?w ?count
WHERE
  { ?s  rdf:type          dbpo:Writer ;
        dbpo:notableWork  ?w
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ビワニ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Tunnel sous La Manche arrivée du tunnelier à Sangatte et Calais"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Tunnel sous La Manche arrivée du tunnelier à Sangatte et Calais"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  p:    <http://dbpedia.org/property/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?player
WHERE
  { ?player  rdf:type        dbpo:SoccerPlayer ;
             p:currentclub   dbpr:FC_Bayern_Munich ;
             p:nationalteam  dbpr:Germany_national_football_team
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Liverdun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monthyon"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Theobroma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Obligate_carnivores
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montpellier"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Satellite_communications
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poortugaal"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Svingino"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Pedro  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haunetal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Tram  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plutno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stidsvig"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Temagami"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Hrvatski" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "proljetni" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "salon"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kochöd"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dagu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "亨特维尔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Escaparata"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Fly" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "og" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "kort" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "orig" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "pakning"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Positive_infinity
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ixtapaluca"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tiamao"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { <http://dbpedia.org/resource/T.N.T._(album)>
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Felipe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AustralianTelevisionActors ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Nicole_Kidman )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Notre-Dame-de-l'Isle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "桑顿"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Tukkikuormaa tuodaan lanssiin Kuhmoniemen Paasijärvellä Kuhmo Kainuu"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Tukkikuormaa tuodaan lanssiin Kuhmoniemen Paasijärvellä Kuhmo Kainuu"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colmberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Завадичи"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?s
WHERE
  {   { ?s  rdf:type    owl:Class ;
            rdfs:label  "cf"@en
      }
    UNION
      { ?s  rdf:type    owl:Class ;
            rdfs:label  "Cf"@en
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?uri ?value ?label ?type ?typeName ?pic
WHERE
  { { ?uri  dbpo:weight  ?value }
    OPTIONAL
      { ?uri  dbpo:mass  ?value }
    OPTIONAL
      { ?uri  dbprop:mass  ?value }
    OPTIONAL
      { ?uri  dbprop:weight  ?value }
    ?uri  rdfs:label  ?label
    OPTIONAL
      { ?uri   rdf:type    ?type .
        ?type  rdfs:label  ?typeName
        FILTER ( lang(?typeName) = "en" )
      }
    OPTIONAL
      { ?uri  foaf:depiction  ?pic }
    FILTER ( ?value > 16948305.0847 )
    FILTER ( ?value < 16950000.0 )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oud-Beijerland"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bafra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?x2 ?x7 ?r0 ?r37
WHERE
  { ?x2       rdf:type     dbpr:Film .
    dbpo:Casablanca
              ?r0          ?x2 .
    <http://dbpedia.org/resource/Casablanca_(film)>
              ?r37         dbpo:Actor .
    dbpr:Ancient_Rome
              dbpo:author  ?x7
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Cat_colony
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aldine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Big Glen"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:ErasmusHallHighSchoolAlumni ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Neil_Diamond )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blanzat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbres1: <)http://dbpedia.org/resource/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?r0
WHERE
  { ?x0  rdf:type  dbpo:Region ;
         ?r0       dbres1:Achaemenid_Empire
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fensterbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Limbengan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:CanadianFemaleGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Sue_Foley )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwielowsee"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guardia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Higashiibaraki District"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weissenbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bol'shoye Rusakovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Veselyy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cranbourne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borek Wielkopolski"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aschdod"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Steutz"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Downpatrick"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cape Palos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Nationality
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "High River"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Polytechnic_Institute
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monopoli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meise"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ulmalakhti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albemarle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sint-Gillis-Waas"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromBurlington,NewfoundlandAndLabrador> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Rex_Goudie )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Köpmanholmen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "på maglekildevej ligger frederiksberg sogns menigheds børnehave til venstre ses en legeplads i baggrunden til venstre ses noget af bagfacaden til ny hollænderskolen der har adresse på hollændervej"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "på maglekildevej ligger frederiksberg sogns menigheds børnehave til venstre ses en legeplads i baggrunden til venstre ses noget af bagfacaden til ny hollænderskolen der har adresse på hollændervej"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stadtteil Urbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Далянь"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lightning Ridge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Habo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/Pedro_de_Sousa_Holstein,_1st_Duke_of_Palmela> rdf:type ?x1 .
    <http://dbpedia.org/resource/Pedro_de_Sousa_Holstein,_1st_Duke_of_Palmela> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/Pedro_de_Sousa_Holstein,_1st_Duke_of_Palmela>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/Pedro_de_Sousa_Holstein,_1st_Duke_of_Palmela>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?subject
WHERE
  { ?subject  rdf:type     dbpo:Writer ;
              dbprop:name  ?o
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Laurie_Topp rdf:type ?x1 .
    dbpr:Laurie_Topp rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Laurie_Topp
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Laurie_Topp
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ilioupoli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  ?Title ?Author ?NumberOfPages
WHERE
  { ?a     rdf:type            dbpo:Book ;
           dbpo:numberOfPages  ?NumberOfPages ;
           rdfs:label          ?Title ;
           dbpo:author         ?name .
    ?name  foaf:name           ?Author
    FILTER ( lang(?Title) = "@en" )
  }
ORDER BY ?Author
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wilsonville"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aprel'skij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Иконниковский"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coral Springs"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Versiliadanza KARAHUNGE VOCI DI BASALTO"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Versiliadanza KARAHUNGE VOCI DI BASALTO"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "マッキニー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Repetergevær x Krag Jørgensen M"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Repetergevær x Krag Jørgensen M"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salamatof"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yangapi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Smorgon'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bourguignon-sous-Montbavin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neunkirchen-Seelscheid"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Padua  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Incisor  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Carlsro bager ca Midlertidig forretning i bebyggelsen på Carlsro Midtervej"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Carlsro bager ca Midlertidig forretning i bebyggelsen på Carlsro Midtervej"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Pauspenning" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "met" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "portret" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "paus" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Benedictus" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "XIV" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "kz" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "allegorie" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "paus" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "Religio"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amersfoort"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Charles Robert Darwin"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Charles Robert Darwin"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1873-07-07"^^xsd:date )
    FILTER ( ?deathDate > "1873-07-07"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishPunkRockSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Richard_Butler_(singer)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アルメロー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Push_Play
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carazinho"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Rex_Goudie rdf:type ?type .
    dbpr:Rex_Goudie ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Rex_Goudie
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ostwald"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santanyí"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gambir"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brighton and Hove City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fort Rock"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:ComposersForCello ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Johann_Sebastian_Bach )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?fio ?born ?prof
WHERE
  { ?pers  rdf:type           dbpo:Person ;
           dbprop:birthName   ?fio ;
           dbprop:birthDate   ?born ;
           dbprop:profession  ?prof
  }
ORDER BY ?prof
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coronel Vidal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?uri ?value ?label ?type ?typeName ?pic
WHERE
  { { ?uri  dbpo:weight  ?value }
    OPTIONAL
      { ?uri  dbpo:mass  ?value }
    OPTIONAL
      { ?uri  dbprop:mass  ?value }
    OPTIONAL
      { ?uri  dbprop:weight  ?value }
    ?uri  rdfs:label  ?label
    OPTIONAL
      { ?uri   rdf:type    ?type .
        ?type  rdfs:label  ?typeName
        FILTER ( lang(?typeName) = "en" )
      }
    OPTIONAL
      { ?uri  foaf:depiction  ?pic }
    FILTER ( ?value > 4.625 )
    FILTER ( ?value < 5.375 )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciénega de Flores"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Толга"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mühlheim am Main"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Avelgem"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Kincses temető Hódmezővásárhely"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Kincses temető Hódmezővásárhely"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naicam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Останцовый"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ulft"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Distributor
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jyllinge"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Dave_Harris
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mechterstädt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ankum"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Twierdza"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saranchino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Punta"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Piedad de Cavadas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Liverpool
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korb"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Delbrück"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "PrefecturadeShiga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gridley"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Francisco Solano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vriezenveen"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kamensk-Ural'skiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puerto Madryn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stausacker"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Мухов"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1968693 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Longjiapu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sales"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zerbst/Anhalt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vila Praia de Âncora"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  7954455 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Kevin Crossley Holland"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Kevin Crossley Holland"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1991-08-05"^^xsd:date )
    FILTER ( ?deathDate > "1991-08-05"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Don Orione"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  25164668 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mezhdurechenskiy"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ratshausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  6184123 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?p
WHERE
  { ?movie    rdf:type           dbpo:Film ;
              dbpo:country       ?mcountry .
    ?mcountry  dbpo:language     dbpr:English_language .
    ?p        dbprop:birthPlace  ?pcountry .
    ?pcountry  dbpo:language     dbpr:German_language .
    ?movie    dbpo:starring      ?p
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huatusco de Chicuellar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Apensen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zverosovkhoz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marano"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dhwajpura"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  206610 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Curuá"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  {   { <http://dbpedia.org/resource/Algerian_(virtual_typeface)>
                  ?po  ?x
      }
    UNION
      { ?x  ?pi  <http://dbpedia.org/resource/Algerian_(virtual_typeface)> }
  }
ORDER BY ?pi ?po ?x
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1961-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Хорошёвская"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skjern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Vicente del Raspeig"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lom"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1995-11-17;end=1995-11-17-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?URI
WHERE
  { ?URI  rdf:type   dbpo:Fish ;
          foaf:name  ?Name
    FILTER ( lcase(str(?Name)) = lcase("Wahoo") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бугарыкта"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  347547 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Romi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  934000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puisseguin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caijiagang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  23955286 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Komárno"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Potsep"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boguslavl'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pyskor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>

SELECT DISTINCT  ?Dir
WHERE
  { ?Dir  rdfs:label  "City"@en ;
          rdf:type    owl:Thing
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  48139 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stockbridge"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  23205992 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  417429 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:RCARecordsNashvilleArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Lari_White )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  30615 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  349084 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maipú"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  728820 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1911-01-01;end=1911-01-01;-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Parkeringspladsen" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Bios" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "GÃrd"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Consequence
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  2104160 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almenara"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  19997199 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  296436 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Agvah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { dbpr:Greenland
              rdf:type      dbpo:Place ;
              dbpo:capital  ?capital .
    ?capital  rdf:type      dbpo:PopulatedPlace ;
              grs:point     ?coord
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  689457 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa María Coronango"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Byhalia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  5624949 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Amunt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1178132 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marijampolė"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  145272 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  4064591 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Пиз"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  193737 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wemmel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AtlanticRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Robert_John )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wallern im Burgenland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Szeghalom"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  428710 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Graveby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gardena"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Semily"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gitsberg"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "São Joao do Tigre"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niederstinzel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1974-05-22;end=1974-05-22-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  71537 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ahveninen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1158358 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dohis"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vad"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mannum"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  9536676 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  { ?x  rdfs:label  "XAU"@en ;
        rdf:type    dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  22926 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "reveklype"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "reveklype"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kilrea"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?movie    rdf:type           dbpo:Film ;
              dbpo:country       ?mcountry .
    ?mcountry  dbpo:language     dbpr:English_language .
    ?p        dbprop:birthPlace  ?pcountry .
    ?pcountry  dbpo:language     dbpr:German_language .
    ?movie    dbpo:starring      ?p
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sildala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Achterwehr"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mireval"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "卡薩拉"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  1785000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gréoux-les-Bains"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Veterinary_clinic
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dachau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alstad"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rotherfield"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hinterhermsdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Overland Park"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  yago: <http://yago-knowledge.org/resource/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Vacation
                  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location>
      }
    UNION
      { dbpr:Vacation
                  rdf:type  dbpo:Location
      }
    UNION
      { dbpr:Vacation
                  rdf:type  dbpo:Place
      }
    UNION
      { dbpr:Vacation
                  rdf:type  dbpo:PopulatedPlace
      }
    UNION
      { dbpr:Vacation
                  rdf:type  umbelrc:PopulatedPlace
      }
    UNION
      { dbpr:Vacation
                  rdf:type  url:Place
      }
    UNION
      { dbpr:Vacation
                  rdf:type  url:Country
      }
    UNION
      { dbpr:Vacation
                  rdf:type  yago:YagoGeoEntity
      }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  16422 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  880391 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  383276 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Inger Sitter"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Inger Sitter"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bicknacre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "コト・デ・カザ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  30950817 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { dbpr:Dominica
              rdf:type  dbpo:Place
    OPTIONAL
      { dbpr:Dominica
                  dbpo:capital  ?capital .
        ?capital  grs:point     ?coords
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berthier-sur-Mer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fourg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pflugerville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baldwin"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brasília"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  361966 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kayes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Tres" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Botellas"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  64313 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ehin Dzagiin Hural"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glencorradale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Metropolis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Ll''ultimi rrose Quanno staje cu' mme R Murolo A Continisio e E Caliendo chitarra"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Ll''ultimi rrose Quanno staje cu' mme R Murolo A Continisio e E Caliendo chitarra"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neptune"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Reduction
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  17662295 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanCountrySingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Pam_Tillis )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monowi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Forada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pyaozerskiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buc"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1761343 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hamby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  3004 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kuusela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Moscow  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:Rachel_Proctor
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tigris"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gojar Khan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

CONSTRUCT 
  { 
    <http://vfringe.totl.net/2015/2015/plaza-food-traders-plaza-2015-08-16T09:00> ?p1 ?x2 .
    <http://vfringe.totl.net/2015/2015/plaza-food-traders-plaza-2015-08-16T09:00> ?p4 ?x3 .
    ?x3 rdf:type ?x5 .
    <http://vfringe.totl.net/2015/2015/plaza-food-traders-plaza-2015-08-16T09:00> ?p7 ?x6 .
    ?x6 rdfs:label ?x8 .
  }
WHERE
  {   { <http://vfringe.totl.net/2015/2015/plaza-food-traders-plaza-2015-08-16T09:00>
                  ?p1  ?x2
      }
    UNION
      { { <http://vfringe.totl.net/2015/2015/plaza-food-traders-plaza-2015-08-16T09:00>
                    ?p4       ?x3 .
          ?x3       rdf:type  ?x5
        }
      }
    UNION
      { { <http://vfringe.totl.net/2015/2015/plaza-food-traders-plaza-2015-08-16T09:00>
                    ?p7         ?x6 .
          ?x6       rdfs:label  ?x8
        }
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hanceville"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  39132932 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Erstein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kölleda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Diane_Roberts rdf:type ?x1 .
    dbpr:Diane_Roberts rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Diane_Roberts
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Diane_Roberts
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Determinant
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { dbpr:Barbados
              rdf:type  dbpo:Place
    OPTIONAL
      { dbpr:Barbados
                  dbpo:capital  ?capital
      }
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:draftTeam  ?o ;
        rdf:type        dbpo:Athlete .
    ?o  rdf:type        dbpo:SportsTeam
  }
OFFSET  4000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palominas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haecht"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1892579 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Len_Trump rdf:type ?x1 .
    dbpr:Len_Trump rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Len_Trump
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Len_Trump
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adelaide River"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montcada i Reixac"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:lake  rdf:type  umbelrc:State }
    UNION
      { dbpr:lake  rdf:type  dbpo:State }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  2271880 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?o) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o .
    ?o  rdf:type       dbpo:Ambassador
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rissani"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lusia"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ban Ko"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guarujá"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Werder (Havel)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { dbpr:New_Caledonia
              rdf:type  dbpo:Place
    OPTIONAL
      { dbpr:New_Caledonia
                  dbpo:capital  ?capital
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Snarøya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "White Star"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Nawab_Waqar-ul-Mulk_Kamboh rdf:type ?x1 .
    dbpr:Nawab_Waqar-ul-Mulk_Kamboh rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Nawab_Waqar-ul-Mulk_Kamboh
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Nawab_Waqar-ul-Mulk_Kamboh
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Salsa Y Bembe"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Salsa Y Bembe"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  26990 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Statesville"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  560876 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  2383377 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Short_list
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St.-Jean-du-Gard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1965-08-01-01-01") ) && ( ?date < xsd:date("1966-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puerto de Mazarrón"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  28831284 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "التربيعة"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  343251 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schackendorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Innisfail"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crapo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  324482 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Wood_flooring
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "甘孜藏族自治州"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Martín de Valdeiglesias"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pugwash"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alpurrurulam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  44312 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT  *
WHERE
  { ?item  rdf:type  dby:PhysicalEntity100001930
    OPTIONAL
      { ?item  rdfs:label  ?label }
    OPTIONAL
      { ?item  gsp:long  ?long }
    OPTIONAL
      { ?item  gsp:lat  ?lat }
    OPTIONAL
      { ?item  dbpo:abstract  ?abstract }
    FILTER ( lang(?abstract) = "de" )
    FILTER ( lang(?label) = "de" )
  }
LIMIT   128
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sortino"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  3466333 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crewe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Фреснильо де Трухано"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1928-08-15;end=1928-08-15-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shivapur"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  34754 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  { ?x  rdfs:label  "Pandora Media Inc"@en ;
        rdf:type    dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { dbpr:Guyana  rdf:type  dbpo:Place
    OPTIONAL
      { dbpr:Guyana  dbpo:capital  ?capital }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Melones"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orebro"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  1293000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  2054278 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  3362423 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uvalda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:LivingPeople ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Just_Blaze )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Miguel de Cozumel"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Alamogordo_daily_news
                  rdf:type  umbelrc:Region
      }
    UNION
      { dbpr:Alamogordo_daily_news
                  rdf:type  dbpo:Region
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "白浜町"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Jasmine_Trias rdf:type ?type .
    dbpr:Jasmine_Trias ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Jasmine_Trias
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  31726664 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1623 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bandong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tri Klyucha"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:careerStation  ?o ;
        rdf:type            dbpo:Person .
    ?o  rdf:type            dbpo:CareerStation
  }
OFFSET  71000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  699390 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  11388236 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tigliole"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyros"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Ambrus" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Zoltán" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "levelezése"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dolgoye"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "多尔马根"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Woodplumpton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1138645 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Familiarity
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/economic-freedom/106>
              rdf:type  dbpo:Place
    OPTIONAL
      { <http://www.pchmelar.cz/resources/economic-freedom/106>
                  dbpo:capital  ?capital .
        ?capital  grs:point     ?coords
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Masaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ameryka"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sal'kino"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Customer_service
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:David_Terry rdf:type ?type .
    dbpr:David_Terry ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:David_Terry
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:NaturalizedCitizensOfTheUnitedStates ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Peter_Frampton )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meerhout"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Port St. Lucie"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Herbert E. Smith"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Herbert E. Smith"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1898-09-26"^^xsd:date )
    FILTER ( ?deathDate > "1898-09-26"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  614418 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

CONSTRUCT 
  { 
    ?o ?n ?m .
  }
WHERE
  { ?s  rdf:type  dbpo:Film ;
        ?p        ?o .
    ?o  ?n        ?m
  }
OFFSET  20774000
LIMIT   10000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mataram-Baru"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Molto"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?o) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o .
    ?o  rdf:type       dbpo:Village
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Avrakondes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meyreuil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plech"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seefeld in Tirol"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPeopleOfCherokeeDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Pam_Tillis )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lund"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  url:  <http://schema.org/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?a ?v0
WHERE
  { { ?a  rdf:type  url:Movie }
    OPTIONAL
      { ?a  dbprop:name  ?v0 }
  }
OFFSET  17000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1094752 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goriya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  29185608 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "E³" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "I‰º"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:dean  ?o ;
        rdf:type   dbpo:EducationalInstitution .
    ?o  rdf:type   dbpo:Person
  }
LIMIT   1000
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:IrishPopSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Damien_Rice )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ナガンビー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "TWENTHE LIED"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "TWENTHE LIED"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  972359 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Norma"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  899786 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Faidh El Botma"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  4857087 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kuru"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>

SELECT DISTINCT  ?entity
WHERE
  { ?entityEng  rdf:type  dby:YagoGeoEntity ;
              owl:sameAs  ?entity
    FILTER regex(str(?entity), "it.dbpedia", "i")
  }
OFFSET  80000
LIMIT   10000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  101146 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dragunj"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sorfold Kommune"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jansen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "South Holland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  198154 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novouspenskij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Брен-л'Аллё"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanMusicalTheatreActors ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Irene_Cara )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Cratloe rdf:type ?x1 .
    dbpr:Cratloe rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Cratloe  rdf:type  ?x1 }
    UNION
      { dbpr:Cratloe  rdfs:label  ?x2 }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  yago: <http://yago-knowledge.org/resource/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:School  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location> }
    UNION
      { dbpr:School  rdf:type  dbpo:Location }
    UNION
      { dbpr:School  rdf:type  dbpo:Place }
    UNION
      { dbpr:School  rdf:type  dbpo:PopulatedPlace }
    UNION
      { dbpr:School  rdf:type  umbelrc:PopulatedPlace }
    UNION
      { dbpr:School  rdf:type  url:Place }
    UNION
      { dbpr:School  rdf:type  url:Country }
    UNION
      { dbpr:School  rdf:type  yago:YagoGeoEntity }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  610452 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/economic-freedom/83>
              rdf:type  dbpo:Place
    OPTIONAL
      { <http://www.pchmelar.cz/resources/economic-freedom/83>
                  dbpo:capital  ?capital
      }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  845738 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Кошноруи"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  23399981 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mondelange"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Southern_Europe
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Gelvonų RKB mirties metrikų knyga m"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Gelvonų RKB mirties metrikų knyga m"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ричаганих"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  18935121 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guanshan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leeston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diego de Almagro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Notre-Dame-de-Bondeville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  13757374 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1748774 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  5792809 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zakharovskiy Raion"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Contagem"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  55408 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { <http://dbpedia.org/resource/Bad_Things_(song)>
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?pageId ?coverFilename
WHERE
  { ?subject  dbpo:wikiPageID  ?pageId ;
              dbprop:name      ?name ;
              rdfs:label       ?label
      { ?subject  dbprop:artist  ?artist }
    UNION
      { ?subject  dbpo:artist  ?artist }
      { ?artist  foaf:name  "Stanislaw Lem"@en }
    UNION
      { ?artist  dbprop:name  "Stanislaw Lem"@en }
    ?subject  rdf:type      dbpo:Album ;
              dbprop:cover  ?coverFilename
    FILTER regex(?name, "Mondnacht", "i")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Feira de Santana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santiago de Surco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  13411146 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ft. Abbas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  23689452 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  817175 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?o) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o .
    ?o  rdf:type       dbpo:RadioStation
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cumbola"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montastruc-la-Conseillère"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sumenep"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  178778 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  url:  <http://schema.org/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?a ?v0
WHERE
  { { ?a  rdf:type  url:Movie }
    OPTIONAL
      { ?a  dbprop:name  ?v0 }
  }
OFFSET  40000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Würenlingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
FROM <http://dbpedia.org>
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0
        FILTER ( lang(?v0) = "en" )
      }
  }
OFFSET  225000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Täsch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Foto" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "straatversiering" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Fruitmarkt" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Virga" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Jessefeesten" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Hasselt"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Love_Game
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bischofferode"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1568416 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  1000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bay Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>

SELECT DISTINCT  ?Dir
WHERE
  { ?Dir  rdfs:label  "Dealer"@en ;
          rdf:type    owl:Thing
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ķekava"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  6192340 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Linkoping"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1723059 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Rock Cottages High Street plus adjoining dwelling"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Rock Cottages High Street plus adjoining dwelling"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Джиланда"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Которец"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oswestry"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "伊格尔"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  464961 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sursyaki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Levisa"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  870020 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harlingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Osijek Kolodvorska ulica razglednica"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Osijek Kolodvorska ulica razglednica"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rakulk"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schöneck"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Peterhead"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Turgi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chugunash"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Essence  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  5320 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "William W. Bowers"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "William W. Bowers"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1862-09-05"^^xsd:date )
    FILTER ( ?deathDate > "1862-09-05"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Brussels
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cheremshanj"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santo Tomas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "derevnya penkozavoda"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyurkmen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ar Raqqah"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  49053 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parador"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Мужилово"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cava de' Tirreni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ironton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  { ?x  rdfs:label  "Defense Chuck Hagel"@en ;
        rdf:type    dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tsu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Abernicht"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  28343641 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Unión de San Antonio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  1261000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bantzenheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:University_Library
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  830612 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lincolnia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "karrikoituja kasvoharjoitelmia kaksi kyömynenäisen juutalaisen puolivartaloa"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "karrikoituja kasvoharjoitelmia kaksi kyömynenäisen juutalaisen puolivartaloa"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  229803 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Longole"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ангулем"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  27220914 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  34986915 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?o) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o .
    ?o  rdf:type       dbpo:ClubMoss
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  902000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castelfranco di Sotto"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>

SELECT DISTINCT  ?Dir
WHERE
  { ?Dir  rdfs:label  "California Health Insurance Provider"@en ;
          rdf:type    owl:Thing
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lekovaj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sekadau"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  973037 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jedlnia-Letnisko"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pittem"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Port Fairy"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Conflans-Sainte-Honorine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Induction
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Espot"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/David_Parks_(politician)> rdf:type ?x1 .
    <http://dbpedia.org/resource/David_Parks_(politician)> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/David_Parks_(politician)>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/David_Parks_(politician)>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lincolnia"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malmen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  42173 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  480040 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jiangwan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:deathPlace  ?o ;
        rdf:type         dbpo:Person .
    ?o  rdf:type         dbpo:Place
  }
OFFSET  69000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grevenbroich"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terent'yevskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Galle"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бильгады"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  707859 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lakhdenkyulya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Golf_course
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Redford Charter Township"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chézery-Forens"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almoradí"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  165470 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bullock Creek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Øverjord"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tungkillo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carleton Place"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "East Aurora"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maceió"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rappersdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Grulla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  249014 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1897-01-15-01-01") ) && ( ?date < xsd:date("1898-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  378453 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Innisfil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skaelskor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gomba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Know_Nothing
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { dbpr:Brazil  rdf:type  dbpo:Place
    OPTIONAL
      { ?capital  dbpo:capital  dbpo:PopulatedPlace ;
                  grs:point     ?coord
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Iwiny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  19467352 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manning"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Birkenhördt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Micoud"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  2239745 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uijeongbu"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Swindon"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  2563851 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:birthPlace  ?o ;
        rdf:type         dbpo:Person .
    ?o  rdf:type         dbpo:Place
  }
OFFSET  139000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Favosites sp"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Favosites sp"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Masny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciudad Guzmán"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vinces"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Massillon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Айдлдейл"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mudimbi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dumas"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  16756 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Violin"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Violin"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salardú"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "L'Orignal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT  *
WHERE
  { ?item  rdf:type  dby:Interrogation107193958
    OPTIONAL
      { ?item  rdfs:label  ?label }
    OPTIONAL
      { ?item  gsp:long  ?long }
    OPTIONAL
      { ?item  gsp:lat  ?lat }
    OPTIONAL
      { ?item  dbpo:abstract  ?abstract }
    FILTER ( lang(?abstract) = "de" )
    FILTER ( lang(?label) = "de" )
  }
LIMIT   128
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Filip" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Oroen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stadtteil Fallersleben"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meddewade"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sapeaçu"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>

SELECT DISTINCT  ?Dir
WHERE
  { ?Dir  rdfs:label  "Realtors"@en ;
          rdf:type    owl:Thing
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "leçons magistrales l'écoute et ses prothèses"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "leçons magistrales l'écoute et ses prothèses"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Fekete kerámia Szilke"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Fekete kerámia Szilke"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Akhmetau"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/ckeditor/plugins/filemanager/scripts/jquery/jqueryFileTree> rdf:type ?x1 .
    <http://dbpedia.org/resource/ckeditor/plugins/filemanager/scripts/jquery/jqueryFileTree> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/ckeditor/plugins/filemanager/scripts/jquery/jqueryFileTree>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/ckeditor/plugins/filemanager/scripts/jquery/jqueryFileTree>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "伊塔佩蒂宁"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Best_Direction
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  184342 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  218751 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Markle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
FROM <http://dbpedia.org>
WHERE
  { ?a  rdf:type  dbpo:City
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  81000
LIMIT   1000
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?b ?v0
FROM <http://dbpedia.org>
WHERE
  { ?b  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?b  <http://www.w3.org/2000/01/rdf-schema#label[@lang='en']>  ?v0 }
  }
OFFSET  30000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "帕丘卡"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  9512459 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "西布罗米奇"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Purwakarta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schunow"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zabakuck"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bonfield"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Christoffer" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Ustad" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Bjurholt"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villa Azueta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hautot-le-Vatois"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pulai Chondong"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roda de Andalucía (la)"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trinita D'Agultu E Vignola"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lodi"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parker"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:birthPlace  ?o ;
        rdf:type         dbpo:Person .
    ?o  rdf:type         dbpo:Place
  }
OFFSET  208000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Czeslawow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Атаманка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT  *
WHERE
  { ?item  rdf:type  <http://dbpedia.org/class/yago/VisitorAttractionsIn%C3%8Ele-de-France>
    OPTIONAL
      { ?item  rdfs:label  ?label }
    OPTIONAL
      { ?item  gsp:long  ?long }
    OPTIONAL
      { ?item  gsp:lat  ?lat }
    OPTIONAL
      { ?item  dbpo:abstract  ?abstract }
    FILTER ( lang(?abstract) = "en" )
    FILTER ( lang(?label) = "en" )
  }
LIMIT   128
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  28714631 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  6493681 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヘレナ・ベイ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1974-05-22;end=1974-05-22-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  15475685 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Марн"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
FROM <http://dbpedia.org>
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0
        FILTER ( lang(?v0) = "en" )
      }
  }
OFFSET  46000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Petit-Mai"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/economic-freedom/15>
              rdf:type  dbpo:Place
    OPTIONAL
      { ?capital  dbpo:capital  dbpo:PopulatedPlace ;
                  grs:point     ?coord
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Disneyland
                  rdf:type  dbpo:Settlement
      }
    UNION
      { dbpr:Disneyland
                  rdf:type  umbelrc:City
      }
    UNION
      { dbpr:Disneyland
                  rdf:type  umbelrc:Village
      }
    UNION
      { dbpr:Disneyland
                  rdf:type  url:City
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teresina de Goiás"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ledantes"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Čista Mala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fresnillo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Census  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  1757000
LIMIT   1000
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:deathPlace  ?o ;
        rdf:type         dbpo:Person .
    ?o  rdf:type         dbpo:Place
  }
OFFSET  38000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Forchheim"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Education
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT  *
WHERE
  { ?item  rdf:type  dby:Socialist110618848
    OPTIONAL
      { ?item  rdfs:label  ?label }
    OPTIONAL
      { ?item  gsp:long  ?long }
    OPTIONAL
      { ?item  gsp:lat  ?lat }
    OPTIONAL
      { ?item  dbpo:abstract  ?abstract }
    FILTER ( lang(?abstract) = "en" )
    FILTER ( lang(?label) = "en" )
  }
LIMIT   128
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  26145195 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tetschen-Bodenbach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greeley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Drummond"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zollikon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
FROM <http://dbpedia.org>
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0
        FILTER ( lang(?v0) = "en" )
      }
  }
OFFSET  312000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  3406102 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Pir_Nazeer_Ahmed rdf:type ?x1 .
    dbpr:Pir_Nazeer_Ahmed rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Pir_Nazeer_Ahmed
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Pir_Nazeer_Ahmed
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1895-01-01;end=1919-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  5797286 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gießen"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Rose_Abdoo rdf:type ?x1 .
    dbpr:Rose_Abdoo rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Rose_Abdoo
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Rose_Abdoo
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "East Point"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castlemaine"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cadolzburg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lauterbach (Hessen)"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Corona"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  12968316 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saliña"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brooking"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberwil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:birthPlace  ?o ;
        rdf:type         dbpo:Person .
    ?o  rdf:type         dbpo:Place
  }
OFFSET  254000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Clydebank"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Capdepera"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  882800 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fortuna Foothills"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бернс Лейк"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guldental"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Sanity  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bozhou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  451000
LIMIT   1000
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/crime/25>
              rdf:type  dbpo:Place
    OPTIONAL
      { <http://www.pchmelar.cz/resources/crime/25>
                  dbpo:capital  ?capital
      }
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/unemployment/34>
              rdf:type  dbpo:Place
    OPTIONAL
      { <http://www.pchmelar.cz/resources/unemployment/34>
                  dbpo:capital  ?capital .
        ?capital  grs:point     ?coord
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Comrie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Flights  rdf:type  dbpo:Country }
    UNION
      { dbpr:Flights  rdf:type  umbelrc:Country }
    UNION
      { dbpr:Flights  rdf:type  url:Country }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Joehstadt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  44635 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
FROM <http://dbpedia.org>
WHERE
  { ?a  rdf:type  dbpo:City
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  24000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stow"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salo järnvägsstation"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blackhawk"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Braine-le-Comte"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "French Creek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  224515 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jequié"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:militaryUnit  ?o ;
        rdf:type           dbpo:MilitaryPerson .
    ?o  rdf:type           dbpo:MilitaryUnit
  }
OFFSET  1000
LIMIT   1000
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ClubDJs ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:DJ_Irene )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  584000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
FROM <http://dbpedia.org>
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0
        FILTER ( lang(?v0) = "en" )
      }
  }
OFFSET  263000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kellokoski"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Falls"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?b ?v0
FROM <http://dbpedia.org>
WHERE
  { ?b  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?b  <http://www.w3.org/2000/01/rdf-schema#label[@lang='en']>  ?v0 }
  }
OFFSET  121000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oakley"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:influencedBy  ?o ;
        rdf:type           dbpo:Person .
    ?o  rdf:type           dbpo:Person
  }
OFFSET  8000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  212126 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  148951 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  599099 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  49132 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Witkowice, Lesser Poland Voivodeship"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Class_mammalia
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  19841894 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  29029594 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  294894 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  499276 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  710305 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  2795493 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lastoursville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soson'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Longwood"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Stable_sort
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Qus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Republik Indonesia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laas Dawaco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciudad Frontera"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "阿尔瓦拉多"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maastricht"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "昆山"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solgne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "jama coaque"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "jama coaque"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zimnice"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  203312 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:OperaComposers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Christian_Sinding )
  }
LIMIT   100
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?o) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o .
    ?o  rdf:type       dbpo:Manga
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Patty_Larkin rdf:type ?type .
    dbpr:Patty_Larkin ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Patty_Larkin
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?o) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o .
    ?o  rdf:type       dbpo:AmericanFootballPlayer
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  17521147 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sparta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { dbpr:Montenegro
              rdf:type      dbpo:Place ;
              dbpo:capital  ?capital .
    ?capital  rdf:type      dbpo:PopulatedPlace ;
              grs:point     ?coord
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?o) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o .
    ?o  rdf:type       dbpo:Bacteria
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vaskelovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Cinque  rdf:type  dbpo:Country }
    UNION
      { dbpr:Cinque  rdf:type  umbelrc:Country }
    UNION
      { dbpr:Cinque  rdf:type  url:Country }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caratagan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Farrenburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Kevin_Allison rdf:type ?x1 .
    dbpr:Kevin_Allison rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Kevin_Allison
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Kevin_Allison
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Jesse_Kaikuranta rdf:type ?x1 .
    dbpr:Jesse_Kaikuranta rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Jesse_Kaikuranta
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Jesse_Kaikuranta
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  3556448 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horb"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Olot"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1092982 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1783295 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  { ?x  rdfs:label  "State Council Information Office"@en ;
        rdf:type    dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/economic-freedom/45>
              rdf:type  dbpo:Place
    OPTIONAL
      { <http://www.pchmelar.cz/resources/economic-freedom/45>
                  dbpo:capital  ?capital .
        ?capital  grs:point     ?coords
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "チュカ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canyon Lake"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  959456 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vostochny Settlement"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fastad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Tlacoyo  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Джексон"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:OperaComposers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Christian_Sinding )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  360089 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gabishevo"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Кенмар"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pamulang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eigeltingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kala Guman"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1048798 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ambarvale"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
FROM <http://dbpedia.org>
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0
        FILTER ( lang(?v0) = "en" )
      }
  }
OFFSET  478000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Embu"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albemarle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?s) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o ;
        rdf:type       dbpo:Wrestler
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  1204000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tonstad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aldan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  27568 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berbeo"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seich"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vierema"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dagus Mines"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Salzuflen"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fenshi"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Eric_Adjei rdf:type ?x1 .
    dbpr:Eric_Adjei rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Eric_Adjei
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Eric_Adjei
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT  *
WHERE
  { ?item  rdf:type  dby:Syntacticians
    OPTIONAL
      { ?item  rdfs:label  ?label }
    OPTIONAL
      { ?item  gsp:long  ?long }
    OPTIONAL
      { ?item  gsp:lat  ?lat }
    OPTIONAL
      { ?item  dbpo:abstract  ?abstract }
    FILTER ( lang(?abstract) = "en" )
    FILTER ( lang(?label) = "en" )
  }
LIMIT   128
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bollullos Par del Condado"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Christopher_Koch rdf:type ?x1 .
    dbpr:Christopher_Koch rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Christopher_Koch
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Christopher_Koch
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caroline Springs"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zimatlan De Alvarez"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?o) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o .
    ?o  rdf:type       dbpo:Winery
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  95815 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "visit to coed cadur llanuwchllyn"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "visit to coed cadur llanuwchllyn"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?x2 ?y
WHERE
  { ?x0  rdf:type         foaf:Person ;
         rdfs:label       ?x2 .
    ?x1  rdf:type         dbpo:TelevisionShow ;
         dbprop:showName  "Easy Money"@en ;
         dbprop:starring  ?x0
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Social_network_analysis
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  306504 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  3781481 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dongguan"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>

ASK
WHERE
  {   { dbpr:Bismarck
                  rdf:type  dbpo:Region
      }
    UNION
      { dbpr:Bismarck
                  rdf:type  dbpo:AdministrativeRegion
      }
    UNION
      { dbpr:Bismarck
                  rdf:type  url:AdministrativeArea
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Erftstadt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/economic-freedom/163>
              rdf:type  dbpo:Place
    OPTIONAL
      { <http://www.pchmelar.cz/resources/economic-freedom/163>
                  dbpo:capital  ?capital .
        ?capital  grs:point     ?coords
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klingenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schering"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  229116 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?o) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o .
    ?o  rdf:type       dbpo:TimePeriod
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:careerStation  ?o ;
        rdf:type            dbpo:Person .
    ?o  rdf:type            dbpo:CareerStation
  }
OFFSET  163000
LIMIT   1000
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Imaginary_number
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sevastopol'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luce"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  22270 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meerhout"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  48830 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Esparza"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  4147465 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:VanguardRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Merle_Haggard )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Phenix"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Phenix"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
FROM <http://dbpedia.org>
WHERE
  { ?a  rdf:type  dbpo:City
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  122000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  203908 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Christine_Elliott rdf:type ?x1 .
    dbpr:Christine_Elliott rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Christine_Elliott
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Christine_Elliott
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ノバ・イグアス"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yulin"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Utowana Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Risan"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  33189 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  12521 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palmetto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albi"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  247817 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Overwettering"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Penvenan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Sunday  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Дуроевская"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Magyizin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Skilt" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Skiftplan" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Rjukan" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "fabrikker"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Euclidean_distance
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  30859125 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:SongwritersFromPennsylvania ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Bunny_Sigler )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  4014249 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1913132 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rawsonville"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  36227050 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1242530 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "São Paulo"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Geiger"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lampertsloch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Highland Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Radcot"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wuppertal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Alabama_Shakespeare_Festival
                  rdf:type  umbelrc:State
      }
    UNION
      { dbpr:Alabama_Shakespeare_Festival
                  rdf:type  dbpo:State
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  yago: <http://yago-knowledge.org/resource/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Music  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location> }
    UNION
      { dbpr:Music  rdf:type  dbpo:Location }
    UNION
      { dbpr:Music  rdf:type  dbpo:Place }
    UNION
      { dbpr:Music  rdf:type  dbpo:PopulatedPlace }
    UNION
      { dbpr:Music  rdf:type  umbelrc:PopulatedPlace }
    UNION
      { dbpr:Music  rdf:type  url:Place }
    UNION
      { dbpr:Music  rdf:type  url:Country }
    UNION
      { dbpr:Music  rdf:type  yago:YagoGeoEntity }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dolgoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  474275 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winder"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1726928 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  166411 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1290448 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  307000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "The Dalles"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  624000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Voiteur"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  113541 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?team    rdf:type           dby:FootballClubsInEngland .
    ?player  dbprop:birthPlace  dbpr:Madrid ;
             dbpo:play          ?team
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zdroj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:careerStation  ?o ;
        rdf:type            dbpo:Person .
    ?o  rdf:type            dbpo:CareerStation
  }
OFFSET  524000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Banish Misfortune"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Banish Misfortune"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  480000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Кайл"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arolokovik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  392390 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>

ASK
WHERE
  {   { dbpr:Christening
                  rdf:type  dbpo:Region
      }
    UNION
      { dbpr:Christening
                  rdf:type  dbpo:AdministrativeRegion
      }
    UNION
      { dbpr:Christening
                  rdf:type  url:AdministrativeArea
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Autonome Mongoolse Prefectuur Bayin'gholin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  384000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1901-11-06;end=1901-11-06-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rincon Grande"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ashington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  612521 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Newcastle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  3712821 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:birthPlace  ?o ;
        rdf:type         dbpo:Person .
    ?o  rdf:type         dbpo:Place
  }
OFFSET  403000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plaszewo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:columbia
                  rdf:type  umbelrc:Country
      }
    UNION
      { dbpr:columbia
                  rdf:type  dbpo:Country
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brewster"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monthodon"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lopuchowo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  8359 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Charente-Maritime"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Machine_language
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?N ?epoque
WHERE
  { ?N  rdf:type           dbpo:Philosopher ;
        dbpo:era           ?epoque ;
        dbpo:influenced    ?influenced ;
        dbpo:influencedBy  ?influenceby
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1904-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  891066 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pederstrup"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "LekebÃt"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Newell  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Enfield"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Havanna"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  437300 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:careerStation  ?o ;
        rdf:type            dbpo:Person .
    ?o  rdf:type            dbpo:CareerStation
  }
OFFSET  510000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  12284396 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ugryumj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  183330 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Карсон"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Hal_White rdf:type ?x1 .
    dbpr:Hal_White rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Hal_White
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Hal_White
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  3092374 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Merrillville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Murias de Paredes"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "På hjørnet af Poulsgade lokker forretningen med mirakelpriser på sine udsalgsvarer"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "På hjørnet af Poulsgade lokker forretningen med mirakelpriser på sine udsalgsvarer"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  26327557 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Paradigm
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1997-09-01-01") ) && ( ?date < xsd:date("1998-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:spouse  ?o ;
        rdf:type     dbpo:Person .
    ?o  rdf:type     dbpo:Person
  }
OFFSET  6000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ameide"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  31292 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koriella"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glarus Süd"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Candaba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1573748 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cheremshanj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Białka Tatrzańska"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Rotherham rdf:type ?x1 .
    dbpr:Rotherham rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Rotherham
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Rotherham
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusiciansFromHawaii ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jasmine_Trias )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pettenbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  22522 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "長岡"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tornimparte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dartford"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pocola"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  22939 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?s ?o
WHERE
  { ?s  dbpo:deathPlace  ?o ;
        rdf:type         dbpo:Person .
    ?o  rdf:type         dbpo:Place
  }
OFFSET  206000
LIMIT   1000
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Keystroke
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obwód czerkaski"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1272729 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poskon'"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sudakovka"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jegłownik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ブレッチリー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "曼西"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  146730 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Espirito Santo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cabinda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>

SELECT DISTINCT  ?Dir
WHERE
  { ?Dir  rdfs:label  "Big"@en ;
          rdf:type    owl:Thing
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ellweiler"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  (COUNT(DISTINCT ?s) AS ?cnt)
WHERE
  { ?s  dbpo:currency  ?o ;
        rdf:type       dbpo:WrittenWork
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  191161 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  28615 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  15295105 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Sandvikens jernverk ab"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Sandvikens jernverk ab"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belogorskiy Raion"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:South_Yorkshire ?p1 ?x2 .
    dbpr:South_Yorkshire ?p4 ?x3 .
    ?x3 rdf:type ?x5 .
    dbpr:South_Yorkshire ?p7 ?x6 .
    ?x6 rdfs:label ?x8 .
  }
WHERE
  {   { dbpr:South_Yorkshire
                  ?p1  ?x2
      }
    UNION
      { { dbpr:South_Yorkshire
                    ?p4       ?x3 .
          ?x3       rdf:type  ?x5
        }
      }
    UNION
      { { dbpr:South_Yorkshire
                    ?p7         ?x6 .
          ?x6       rdfs:label  ?x8
        }
      }
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/R%C3%BAben_Andrade> rdf:type ?x1 .
    <http://dbpedia.org/resource/R%C3%BAben_Andrade> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/R%C3%BAben_Andrade>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/R%C3%BAben_Andrade>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marina di Massa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?x2 ?y
WHERE
  { ?x0  rdf:type     foaf:Person ;
         foaf:name    ?x2 .
    ?x1  rdf:type     dbpo:Film ;
         dbprop:name  ?y ;
         dbprop:Work  ?x0
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EurodanceMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Sandra_(singer)> )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  17412 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanSoulSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Madeline_Bell )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orpí"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Talladega"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bell Gardens"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Masury"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Overloon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  5049640 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:PHP  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  946966 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colle di Val d'Elsa"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Powellton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sekadau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  54648 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Clark"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schertz"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "タラゴーナ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Johann Friedrich Rochlitz"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Johann Friedrich Rochlitz"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1820-02-12"^^xsd:date )
    FILTER ( ?deathDate > "1820-02-12"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caledonia"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staroselok"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vsetin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  18839 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dötlingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyurkmen Makhle"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Biriyya"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1734592 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  24872 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  1116000
LIMIT   1000
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { <http://dbpedia.org/resource/Gam%C3%A9>
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1908-08-01-01") ) && ( ?date < xsd:date("1909-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Мамурраш"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  64777 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { <http://dbpedia.org/resource/Jo%C3%A9e>
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Computer_model
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1228226 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  20949522 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vilanova d'Alcolea"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Batu Anam"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  654343 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  897840 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kunzell"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shopishk"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  106539 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Freddo core"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Freddo core"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  490780 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1511138 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chicora"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sain-Bel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "谢尔顿"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Shot  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tobin"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  yago: <http://yago-knowledge.org/resource/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Africa  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location> }
    UNION
      { dbpr:Africa  rdf:type  dbpo:Location }
    UNION
      { dbpr:Africa  rdf:type  dbpo:Place }
    UNION
      { dbpr:Africa  rdf:type  dbpo:PopulatedPlace }
    UNION
      { dbpr:Africa  rdf:type  umbelrc:PopulatedPlace }
    UNION
      { dbpr:Africa  rdf:type  url:Place }
    UNION
      { dbpr:Africa  rdf:type  url:Country }
    UNION
      { dbpr:Africa  rdf:type  yago:YagoGeoEntity }
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/crime/54>
              rdf:type  dbpo:Place
    OPTIONAL
      { ?capital  dbpo:capital  dbpo:PopulatedPlace ;
                  grs:point     ?coord
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rangakol"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vaugines"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Albuminscriptie" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "van" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Petrus" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Cunaeus" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "letterkundige" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "en" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "rechtsgeleerde" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "voor" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "Pieter" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "van" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "Harinxma" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "thoe" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "Slooten"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Island City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  { ?x  rdfs:label  "GBL"@en ;
        rdf:type    dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pollock Pines"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kerrie"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sleepy Hollow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Srand  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT DISTINCT  *
WHERE
  { ?item  rdf:type  dby:Town108665504
    OPTIONAL
      { ?item  rdfs:label  ?label }
    OPTIONAL
      { ?item  gsp:long  ?long }
    OPTIONAL
      { ?item  gsp:lat  ?lat }
    OPTIONAL
      { ?item  dbpo:abstract  ?abstract }
    FILTER ( lang(?abstract) = "en" )
    FILTER ( lang(?label) = "en" )
  }
LIMIT   128
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Astorp"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?b ?v0
WHERE
  { { ?b  rdf:type  wde:Q11173 }
    OPTIONAL
      { ?b  rdfs:label  ?v0 }
  }
OFFSET  178000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bâgé-le-Châtel"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  54268 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Zuivelstatistiek"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Good_citizenship
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vallipadu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lucin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1951-09-19;end=1952-04-10-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hacienda Heights"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stoughton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  {   { <http://dbpedia.org/resource/Toledo_(typeface)>
                  ?po  ?x
      }
    UNION
      { ?x  ?pi  <http://dbpedia.org/resource/Toledo_(typeface)> }
  }
ORDER BY ?pi ?po ?x
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  3567801 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manito"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Dubrovnik" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Zidine"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "马斯代克"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gołdap"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Minnetrista"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pachpadra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/economic-freedom/48>
              rdf:type  dbpo:Place
    OPTIONAL
      { ?capital  dbpo:capital  dbpo:PopulatedPlace ;
                  grs:point     ?coord
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dushichang"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nistelrode"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dillingen/ Saar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  65459 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  593060 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luxe"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  772869 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?chool ?homepage ?president ?comment ?established ?type ?country ?city
WHERE
  { ?school  dct:subject  dbpr:Category:Universities_in_Syria
    FILTER regex(str(?school), "University_of_Aleppo")
    OPTIONAL
      { ?school  foaf:homepage  ?homepage }
    OPTIONAL
      { ?school  dbprop:president  ?president }
    OPTIONAL
      { ?school  dbprop:nickname  ?nickname }
    OPTIONAL
      { ?school  dbprop:name  ?name }
    OPTIONAL
      { ?school  rdfs:comment  ?comment
        FILTER langMatches(lang(?comment), "en")
      }
    OPTIONAL
      { ?school  dbprop:established  ?established }
    OPTIONAL
      { ?school  dbprop:type  ?type }
    OPTIONAL
      { ?school  dbprop:website  ?website }
    OPTIONAL
      { ?school  dbprop:country  ?country }
    OPTIONAL
      { ?school  dbprop:city  ?city }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "lovasiskola"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "lovasiskola"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grandes y San Martin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Taiwan_under_Japanese_rule rdf:type ?x1 .
    dbpr:Taiwan_under_Japanese_rule rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Taiwan_under_Japanese_rule
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Taiwan_under_Japanese_rule
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frenchman's Cove"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montataire"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hishinodai"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yates Center"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  9678636 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lannepax"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  781729 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/William_Watson,_Baron_Watson> rdf:type ?x1 .
    <http://dbpedia.org/resource/William_Watson,_Baron_Watson> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/William_Watson,_Baron_Watson>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/William_Watson,_Baron_Watson>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/unemployment/196>
              rdf:type  dbpo:Place
    OPTIONAL
      { <http://www.pchmelar.cz/resources/unemployment/196>
                  dbpo:capital  ?capital .
        ?capital  grs:point     ?coord
      }
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:BonnierAmigoMusicGroupArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Madcon )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Lindsey_Stagg rdf:type ?x1 .
    dbpr:Lindsey_Stagg rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Lindsey_Stagg
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Lindsey_Stagg
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Milwaukee"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  16479312 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karagali"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malhadinha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Furuflaten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gela"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  34941263 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grójec"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kumamoto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sebastopol"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trumbull"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  2803163 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Seu d'Urgell"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Central City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mayskaya Zarya"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  2406277 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  8935744 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kuolayarvi"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bisaurri"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kórnik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?b ?v0
WHERE
  { { ?b  rdf:type  wde:Q11173 }
    OPTIONAL
      { ?b  dct:title  ?v0 }
  }
OFFSET  26000
LIMIT   1000
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Classroom
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Модика"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Fekete kerámia Tányér"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Fekete kerámia Tányér"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

CONSTRUCT 
  { 
    ?o ?n ?m .
  }
WHERE
  { ?s  rdf:type  dbpo:Film ;
        ?p        ?o .
    ?o  ?n        ?m
  }
OFFSET  22524000
LIMIT   10000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  4753452 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  208463 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  1958830 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/economic-freedom/133>
              rdf:type  dbpo:Place
    OPTIONAL
      { <http://www.pchmelar.cz/resources/economic-freedom/133>
                  dbpo:capital  ?capital .
        ?capital  grs:point     ?coord
      }
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?a ?v0
WHERE
  { ?a  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?a  rdfs:label  ?v0 }
  }
OFFSET  412000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  20854298 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Bastien" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Gallet"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?b ?v0
WHERE
  { ?b  rdf:type  dbpo:PopulatedPlace
    OPTIONAL
      { ?b  <http://www.w3.org/2000/01/rdf-schema#label[@lang='en']>  ?v0 }
  }
OFFSET  183000
LIMIT   1000
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  3367769 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sonoma"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  15105978 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ruka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mingot"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  144869 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Keurusselkä"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuburg am Inn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bhiwani"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vyritsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?pageId ?coverFilename
WHERE
  { ?subject  dbpo:wikiPageID  ?pageId ;
              dbprop:name      ?name ;
              rdfs:label       ?label
      { ?subject  dbprop:artist  ?artist }
    UNION
      { ?subject  dbpo:artist  ?artist }
      { ?artist  foaf:name  "Kurt Tucholsky"@en }
    UNION
      { ?artist  dbprop:name  "Kurt Tucholsky"@en }
    ?subject  rdf:type      dbpo:Album ;
              dbprop:cover  ?coverFilename
    FILTER regex(?name, "Der Zeitsparer", "i")
  }
LIMIT   1
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Victor_Lundin rdf:type ?x1 .
    dbpr:Victor_Lundin rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Victor_Lundin
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Victor_Lundin
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Repairing_mountain_view_ca
                  rdf:type  umbelrc:State
      }
    UNION
      { dbpr:Repairing_mountain_view_ca
                  rdf:type  dbpo:State
      }
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Deventer rdf:type ?x1 .
    dbpr:Deventer rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Deventer
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Deventer
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Habshan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Barbra_Streisand rdf:type ?type .
    dbpr:Barbra_Streisand ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Barbra_Streisand
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  854614 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasn. Vskhody"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?type
WHERE
  { ?y  dbpo:wikiPageID  26057176 ;
        rdf:type         ?type
    FILTER strstarts(str(?type), "http://dbpedia.org/ontology")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サイクストン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bidingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gora Shared"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Floresta do Araguaia"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Benoni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Abu_Qatada rdf:type ?x1 .
    dbpr:Abu_Qatada rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Abu_Qatada
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Abu_Qatada
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberried"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  grs:  <http://www.georss.org/georss/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { <http://www.pchmelar.cz/resources/crime/22>
              rdf:type  dbpo:Place
    OPTIONAL
      { ?capital  dbpo:capital  dbpo:PopulatedPlace ;
                  grs:point     ?coord
      }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1922-08-09;end=1922-08-09;-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Clonmel  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location> }
    UNION
      { dbpr:Clonmel  rdf:type  dbpo:Place }
    UNION
      { dbpr:Clonmel  rdf:type  dbpo:PopulatedPlace }
    UNION
      { dbpr:Clonmel  rdf:type  umbelrc:PopulatedPlace }
    UNION
      { dbpr:Clonmel  rdf:type  url:Place }
    UNION
      { dbpr:Clonmel  rdf:type  dby:YagoGeoEntity }
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>

SELECT  ?p ?q (COUNT(?q) AS ?c)
WHERE
  { ?s  rdf:type  dby:ChicagoShamrocksPlayers ;
        ?p        ?o .
    ?o  rdf:type  ?q
  }
GROUP BY ?p ?q
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "シッドマン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.movieontology.org/2009/10/01/movieontology.owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    ?distributor2 rdf:type owl:Distributor .
    <http://www.movieontology.org/2009/10/01/movieontology.owl#_Maze_(2000)> owl:has_Distributor ?distributor2 .
  }
WHERE
  { VALUES ?subject { <http://dbpedia.org/resource/Maze_(film)> }
    ?subject  rdf:type  dbpo:Film
    OPTIONAL
      { ?subject  dbpo:distributor  ?distributor }
    BIND(replace(str(?distributor), "http://dbpedia.org/resource/", "http://www.movieontology.org/2009/10/01/movieontology.owl#") AS ?distributor3)
    BIND(iri(?distributor3) AS ?distributor2)
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:About_australia
                  rdf:type  umbelrc:Location
      }
    UNION
      { dbpr:About_australia
                  rdf:type  dbpo:Location
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Risjon Letsion"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shaoyang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>

SELECT  ?p ?q (COUNT(?q) AS ?c)
WHERE
  { ?s  rdf:type  <http://dbpedia.org/class/yago/BuildingsAndStructuresInSenecaCounty,Ohio> ;
        ?p        ?o .
    ?o  rdf:type  ?q
  }
GROUP BY ?p ?q
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Tejar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Channelview"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roshcha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Viktoropol'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:To_St  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location> }
    UNION
      { dbpr:To_St  rdf:type  dbpo:Place }
    UNION
      { dbpr:To_St  rdf:type  dbpo:PopulatedPlace }
    UNION
      { dbpr:To_St  rdf:type  umbelrc:PopulatedPlace }
    UNION
      { dbpr:To_St  rdf:type  url:Place }
    UNION
      { dbpr:To_St  rdf:type  dby:YagoGeoEntity }
    UNION
      { dbpr:To_St  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              <http://www.ontologydesignpatterns.org/ont/d0.owl#Location>
      }
    UNION
      { dbpr:To_St  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              dbpo:Place
      }
    UNION
      { dbpr:To_St  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              dbpo:PopulatedPlace
      }
    UNION
      { dbpr:To_St  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              umbelrc:PopulatedPlace
      }
    UNION
      { dbpr:To_St  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              url:Place
      }
    UNION
      { dbpr:To_St  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              dby:YagoGeoEntity
      }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  owl:  <http://www.movieontology.org/2009/10/01/movieontology.owl#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://www.movieontology.org/2009/10/01/movieontology.owl#_Opposite_of_Sex_The_(1998)> owl:producedBy ?producer2 .
    ?producer2 rdf:type owl:Producer .
  }
WHERE
  { VALUES ?subject { <http://dbpedia.org/resource/List_of_lesbian,_gay,_bisexual_or_transgender-related_films_of_1998> }
    ?subject  rdf:type  dbpo:Film
    OPTIONAL
      { ?subject  dbpo:producer  ?producer }
    BIND(replace(str(?producer), "http://dbpedia.org/resource/", "http://www.movieontology.org/2009/10/01/movieontology.owl#") AS ?producer3)
    BIND(iri(?producer3) AS ?producer2)
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St.-Samuel"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>

SELECT  ?p ?q (COUNT(?q) AS ?c)
WHERE
  { ?s  rdf:type  <http://dbpedia.org/class/yago/ChurchesInNorfolk,Virginia> ;
        ?p        ?o .
    ?o  rdf:type  ?q
  }
GROUP BY ?p ?q
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mullingar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fresnoy-au-Val"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hermanstorp"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Caroline Weber"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Caroline Weber"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1823-09-16"^^xsd:date )
    FILTER ( ?deathDate > "1823-09-16"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Milton Keynes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>
PREFIX  dbprop: <http://dbpedia.org/property/>

ASK
WHERE
  {   { dbpr:Rental_Las
                  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Company>
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  dbpo:Company
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  dbpo:Organisation
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  url:Organization
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  umbelrc:Business
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  umbelrc:Organization
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  dby:Business108061042
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  dby:Company108058098
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  dby:Enterprise108056231
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  dby:Group100031264
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  dby:Institution108053576
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  dby:Manufacturer108060446
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  dby:Organization108008335
      }
    UNION
      { dbpr:Rental_Las
                  rdf:type  dby:SocialGroup107950920
      }
    UNION
      { ?p  dbprop:industry  dbpr:Rental_Las }
    UNION
      { ?q  dbpo:industry  dbpr:Rental_Las }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Talukhino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kartared"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Gruppe Indrehus"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Gruppe Indrehus"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hauknes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:brooksville
                  rdf:type  umbelrc:City
      }
    UNION
      { dbpr:brooksville
                  rdf:type  dbpo:City
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khemisti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.movieontology.org/2009/10/01/movieontology.owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    ?editing2 rdf:type owl:Editor .
    <http://www.movieontology.org/2009/10/01/movieontology.owl#_Princess_Diaries_The_(2001)> owl:movie_edited_by ?editing2 .
  }
WHERE
  { VALUES ?subject { dbpr:The_Princess_Diaries_2:_Royal_Engagement }
    ?subject  rdf:type  dbpo:Film
    OPTIONAL
      { ?subject  dbpo:editing  ?editing }
    BIND(replace(str(?editing), "http://dbpedia.org/resource/", "http://www.movieontology.org/2009/10/01/movieontology.owl#") AS ?editing3)
    BIND(iri(?editing3) AS ?editing2)
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Doctors_Hospital_Augusta_Ga
                  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location>
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  rdf:type  dbpo:Place
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  rdf:type  dbpo:PopulatedPlace
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  rdf:type  umbelrc:PopulatedPlace
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  rdf:type  url:Place
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  rdf:type  dby:YagoGeoEntity
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              <http://www.ontologydesignpatterns.org/ont/d0.owl#Location>
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              dbpo:Place
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              dbpo:PopulatedPlace
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              umbelrc:PopulatedPlace
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              url:Place
      }
    UNION
      { dbpr:Doctors_Hospital_Augusta_Ga
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              dby:YagoGeoEntity
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Raukhala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "奥拉尼"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caledon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aripibu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>

SELECT  ?p ?q (COUNT(?q) AS ?c)
WHERE
  { ?s  rdf:type  dby:Arabic-languagePoets ;
        ?p        ?o .
    ?o  rdf:type  ?q
  }
GROUP BY ?p ?q
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Udor"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Styrsjobo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "穆特温吉"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shan'sherovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Bogastelle" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "skytterstilling" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "pÃ" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Linderudkollen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Auerbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ningde"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maddaloni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?WrittenWork ?author ?genre
WHERE
  { ?WrittenWork  rdf:type      dbpo:WrittenWork ;
              dbprop:author     ?author ;
              dbprop:genre      ?genre ;
              dbprop:publisher  ?publisher
    FILTER ( ?publisher = :Harper_Perennial )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xiajia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Opoczno"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "L’Île-Rousse"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "リブノエ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oakhill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "休伊特"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Serviceton"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location>
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  rdf:type  dbpo:Place
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  rdf:type  dbpo:PopulatedPlace
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  rdf:type  umbelrc:PopulatedPlace
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  rdf:type  url:Place
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  rdf:type  dby:YagoGeoEntity
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              <http://www.ontologydesignpatterns.org/ont/d0.owl#Location>
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              dbpo:Place
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              dbpo:PopulatedPlace
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              umbelrc:PopulatedPlace
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              url:Place
      }
    UNION
      { dbpr:Trust_At_Frontier_Bank_In_Everett_Washington
                  dbpo:wikiPageRedirects  ?newRes .
        ?newRes   rdf:type              dby:YagoGeoEntity
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tagirkend"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shinshiro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Зимният гост на Варна"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Зимният гост на Варна"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burghausen"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:basketball
                  rdf:type  umbelrc:Country
      }
    UNION
      { dbpr:basketball
                  rdf:type  dbpo:Country
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grifton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Francisco Alvarez"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bono"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Svedala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  owl:  <http://www.movieontology.org/2009/10/01/movieontology.owl#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

CONSTRUCT 
  { 
    owl:12060.html rdf:type owl:Review .
    <http://www.movieontology.org/2009/10/01/movieontology.owl#_View_to_a_Kill_A_(1985)> rdf:type owl:Movie .
    <http://www.movieontology.org/2009/10/01/movieontology.owl#_View_to_a_Kill_A_(1985)> rdfs:label " View to a Kill, A (1985)" .
    owl:12060.html owl:review_about <http://www.movieontology.org/2009/10/01/movieontology.owl#_View_to_a_Kill_A_(1985)> .
  }
WHERE
  {  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Regneville-Sur-Meuse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Ottawa  rdf:type  umbelrc:Place }
    UNION
      { dbpr:Ottawa  rdf:type  dbpo:Place }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

ASK
WHERE
  {   { dbpr:145_King
                  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Company>
      }
    UNION
      { dbpr:145_King
                  rdf:type  dbpo:PublicService
      }
    UNION
      { dbpr:145_King
                  dbpo:service  ?p
      }
    UNION
      { dbpr:145_King
                  dbprop:industry  ?q
      }
    UNION
      { ?P  dbprop:services  dbpr:145_King }
    UNION
      { ?PP  dbpo:services  dbpr:145_King }
    UNION
      { ?Q  dbprop:industry  dbpr:145_King }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Japeri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zahl"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Olaf" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "AVDKM" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Colijn"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tekeli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winzendorf"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>

SELECT  ?p ?q (COUNT(?q) AS ?c)
WHERE
  { ?s  rdf:type  dby:HarvardCrimsonCoaches ;
        ?p        ?o .
    ?o  rdf:type  ?q
  }
GROUP BY ?p ?q
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roptazijl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>

SELECT  ?p ?q (COUNT(?q) AS ?c)
WHERE
  { ?s  rdf:type  <http://dbpedia.org/class/yago/BuildingsAndStructuresInMedford,Oregon> ;
        ?p        ?o .
    ?o  rdf:type  ?q
  }
GROUP BY ?p ?q
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chipchikon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.movieontology.org/2009/10/01/movieontology.owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    ?writer2 rdf:type owl:Writer .
    <http://www.movieontology.org/2009/10/01/movieontology.owl#_American_History_X_(1998)> owl:has_Writer ?writer2 .
  }
WHERE
  { VALUES ?subject { dbpr:American_History_X }
    ?subject  rdf:type  dbpo:Film
    OPTIONAL
      { ?subject  dbpo:writer  ?writer }
    BIND(replace(str(?writer), "http://dbpedia.org/resource/", "http://www.movieontology.org/2009/10/01/movieontology.owl#") AS ?writer3)
    BIND(iri(?writer3) AS ?writer2)
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>

SELECT  ?p ?q (COUNT(?q) AS ?c)
WHERE
  { ?s  rdf:type  dby:MargravesOfBaden ;
        ?p        ?o .
    ?o  rdf:type  ?q
  }
GROUP BY ?p ?q
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "vår frue kirke's menihets juletrefest for barn i sommerveitens bedehus"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "vår frue kirke's menihets juletrefest for barn i sommerveitens bedehus"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Колон"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>
PREFIX  dbprop: <http://dbpedia.org/property/>

ASK
WHERE
  {   { dbpr:Petaling_Jaya
                  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Company>
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  dbpo:Company
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  dbpo:Organisation
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  url:Organization
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  umbelrc:Business
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  umbelrc:Organization
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  dby:Business108061042
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  dby:Company108058098
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  dby:Enterprise108056231
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  dby:Group100031264
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  dby:Institution108053576
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  dby:Manufacturer108060446
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  dby:Organization108008335
      }
    UNION
      { dbpr:Petaling_Jaya
                  rdf:type  dby:SocialGroup107950920
      }
    UNION
      { ?p  dbprop:industry  dbpr:Petaling_Jaya }
    UNION
      { ?q  dbpo:industry  dbpr:Petaling_Jaya }
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>

SELECT  ?p ?q (COUNT(?q) AS ?c)
WHERE
  { ?s  rdf:type  dby:BangladeshiVictimsOfCrime ;
        ?p        ?o .
    ?o  rdf:type  ?q
  }
GROUP BY ?p ?q
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gómez Palacio"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eyguières"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krausnick-Groß Wasserburg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carranglan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  mo:   <http://purl.org/ontology/mo/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  ?name ?img ?hp ?loc
WHERE
  { ?a  rdf:type   mo:MusicArtist ;
        foaf:name  ?name
    OPTIONAL
      { ?a  foaf:img  ?img }
    OPTIONAL
      { ?a  foaf:homepage  ?hp }
    OPTIONAL
      { ?a  foaf:based_near  ?loc }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?country_name ?population
WHERE
  { ?country  rdf:type              dby:LandlockedCountries ;
              rdfs:label            ?country_name ;
              dbprop:populationEstimate  ?population
    FILTER ( ?population > 15000000 )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?country_name ?population
WHERE
  { ?country  rdf:type              dby:LandlockedCountries ;
              rdfs:label            ?country_name ;
              dbprop:populationEstimate  ?population
    FILTER ( ( ?population > 15000000 ) && langMatches(lang(?country_name), "EN") )
  }
ORDER BY DESC(?population)
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?property
WHERE
  { ?instance  rdf:type  dbpo:Person ;
              ?property  ?obj
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  pos:  <http://www.w3.org/2003/01/geo/wgs84_pos#>

SELECT  *
WHERE
  { ?s  rdf:type  dbpo:Place ;
        pos:lat   ?lat ;
        pos:long  ?long
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { ?company  rdf:type              dbpo:Organisation ;
              dbpo:foundationPlace  dbpr:California .
    ?product  dbpo:developer        ?company ;
              rdf:type              dbpo:Software
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?author_name ?title
FROM <http://dbpedia.org/>
WHERE
  { ?author  rdf:type          dbpo:Writer ;
             rdfs:label        ?author_name ;
             dbpo:notableWork  ?work .
    ?work    rdfs:label        ?title
  }
ORDER BY ASC(?author_name)
OFFSET  10
LIMIT   100
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?s ?author
WHERE
  { ?s  rdf:type     dbpo:Book ;
        dbpo:author  ?author
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person
WHERE
  { ?person  foaf:name  ?name
    GRAPH ?g1
      { ?person  rdf:type  foaf:Person }
    GRAPH ?g2
      { ?person  rdf:type  foaf:Person }
    GRAPH ?g3
      { ?person  rdf:type  foaf:Person }
    FILTER ( ( ( ?g1 != ?g2 ) && ( ?g1 != ?g3 ) ) && ( ?g2 != ?g3 ) )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?country_name ?population
WHERE
  { ?country  rdf:type              dby:LandlockedCountries ;
              rdfs:label            ?country_name ;
              dbprop:populationEstimate  ?population
  }
"
"PREFIX  skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  cat:  <http://dbpedia.org/resource/Category:>

CONSTRUCT 
  { 
    cat:Computer_hardware_companies skos:broader ?broaderConcept .
    ?broaderConcept skos:prefLabel ?preferredLabel .
    ?broader rdf:type skos:Concept .
  }
WHERE
  { cat:Computer_hardware_companies
              skos:broader    ?broaderConcept .
    ?broaderConcept
              skos:prefLabel  ?preferredLabel
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?city  rdf:type              dby:CitiesInTexas ;
           dbpo:populationTotal  ?popTotal
  }
"
"PREFIX  mo:   <http://purl.org/ontology/mo/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  ?name ?img ?hp ?loc
WHERE
  { ?a  rdf:type         mo:MusicArtist ;
        foaf:name        ?name ;
        foaf:img         ?img ;
        foaf:homepage    ?hp ;
        foaf:based_near  ?loc
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  db-owl: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?ville  db-owl:region         <http://fr.dbpedia.org/resource/Île-de-France> ;
            rdf:type              db-owl:Settlement ;
            db-owl:populationTotal  ?population
    FILTER ( ?population > 100000 )
  }
"
"PREFIX  dsw:  <http://purl.org/dsw/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dcmit: <http://purl.org/dc/dcmitype/>

SELECT DISTINCT  ?tree
WHERE
  { ?tree     dsw:hasOccurrence  ?Occurrence .
    ?image    dsw:evidenceFor    ?Occurrence ;
              dct:type           dcmit:StillImage .
    ?tree     dsw:hasOccurrence  ?OtherOccurrence .
    ?specimen  dsw:evidenceFor   ?OtherOccurrence ;
              rdf:type           dsw:PreservedSpecimen
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  type: <http://info.deepcarbon.net/schema/type#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?country_name ?population
WHERE
  { ?country  rdf:type              type:LandlockedCountries ;
              rdfs:label            ?country_name ;
              dbprop:populationEstimate  ?population
    FILTER ( ?population > 15000000 )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terrell"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosmalen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanRockGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jonathan_Richman )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zabache"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ruhstorf an der Rott"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goszczanowo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vass"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Adrada"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yur'ev-Pol'skiy Raion"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Antonio"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dnipropetrovs'k"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Raret"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サカーカ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quesada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Milano"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Loja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laboule"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frydlant"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strektovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Serena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trenczyn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brühl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ørje"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Werneuchen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nattheim"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kihei"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Cementfabrik Asserien Aseri tsementi wabrik"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Cementfabrik Asserien Aseri tsementi wabrik"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shimonoseki"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Patresh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Punkaharju"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ジャクソンビル・ビーチ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greeley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heusenstamm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アルマー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  pos:  <http://www.w3.org/2003/01/geo/wgs84_pos#>

SELECT  *
WHERE
  { ?s  rdf:type  dbpo:Place ;
        pos:lat   ?lat ;
        pos:long  ?long
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  *
WHERE
  { ?actor2  rdf:type        dbpo:Actor ;
             foaf:name       ?actor_name_en ;
             dbpo:birthDate  ?birth_date
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  *
WHERE
  { ?person  foaf:name  ?name ;
             rdf:type   foaf:Person
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pasir Jambu"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Conroe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buren"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nixon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dahme"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reese"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rockwall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishFemaleSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Justine_Frischmann )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бурщина"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mansfeld"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Estepona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chilanj"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:RCARecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Rick_Astley )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atibaia"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zaanstad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Massy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Szava"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huete"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Edison"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lindenhurst"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Massugas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nördlingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ArgentinePeopleOfItalianDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Carlos_di_Sarli )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lyurj"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hailsham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Langenau"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:NewZealandSongwriters ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Neil_Finn )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Herdorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Patricia Rainfall from Space"@en }
    UNION
      { :Patricia_Rainfall_from_Space
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sawl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Carcasse de parapluie pliant"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Carcasse de parapluie pliant"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "バインゴリン・モンゴル"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ibarra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Riverview"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Samoa Americane"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klyutsi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Huzaar" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Régiment" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "de" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Hussards" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Compagnie" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "délite"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hollenstedt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teotihuacan de Arista"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pforzheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Винёф"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Forli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arkhangel'skiy Raion"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:RCAVictorArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Michel_Legrand )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jackman"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AfricanAmericanSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Eddie_Murphy )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kashkaragaikha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Murphy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guaíba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vinukonda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lerum"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/AlumniOfFitzwilliamCollege,Cambridge> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Nick_Drake )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lagavulin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Cerrito"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luckau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zimapan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Fotograf Normann"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Fotograf Normann"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hoeyang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "hoppetoren voor de pluk van hop"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "hoppetoren voor de pluk van hop"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Merlo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Skyru"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paghman Palace"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bacoor City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "シカレ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santanyí"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ブジェシュチェ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Port Saint Lucie"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gayurj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sula"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alvorada"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Scheinfeld"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nidrum"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyrnau"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cable Head West"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Narrung"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Killeen"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:NewAgeSynthesizerPlayers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Constance_Demby )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pörtom"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yetekhtekh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wheaton"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "[Letter] Paris [to] unknown Bouquel"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "[Letter] Paris [to] unknown Bouquel"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hadley"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromKansasCity,Missouri> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Christopher_Willits )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dolostsy"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deeral"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Баранское"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Drafi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altenmarkt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sual"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishRecordProducers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Adamski )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jackman"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "unbeaten in"@en }
    UNION
      { :unbeaten_in  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhukovskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yancopin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Limulunga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ho"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hialeah"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanVoiceActors ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Gene_Simmons )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "卡巴"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMusicalTheatreLyricists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:George_Bassman )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heerbrugg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baklanka"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colline Rubona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Olenovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Bentheim"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Syrtych"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cantu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obergurgl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Catem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thenay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castroville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Radmer an der Stube"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusicalGroupsFromNewYork ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:The_Slackers )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Servie" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Janssen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sutton under Brailes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アイスリップ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nondalton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Egremont"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "テトリノ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Мейсонтаун"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Flammersfeld"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Industrial'niy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maues"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwäbisch Gmünd"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aschau am Inn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stamford"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balagtas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yiyang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("after-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gerokgak"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gradissimo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Centralina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tieling"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wroxton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lobonovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "弗雷明汉"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Ronald_Isley rdf:type ?type .
    dbpr:Ronald_Isley ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Ronald_Isley
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nykvarn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anoyi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Selfkant"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Торонто"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:Dennis_McGee
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hrabstwo Bourbon"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Igualada"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Capão Bonito"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glenview"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Navsari"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Isserpent"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stapelfeld"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ado"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bietigheim-Bissingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ベインブリッジ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "São Caetano do Sul"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kelang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tenino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hoogvliet"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orneta"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:RomanianRomaniPeople ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Georges_Boulanger_(violinist)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yamaska"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shepparton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quillota"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bukovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Liujing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monnanummi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tungelsta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Pamphile"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Telets"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wilsonville"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bretten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Girardville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Aussee"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  *
WHERE
  { ?location  rdf:type             dbpo:PopulatedPlace ;
              dbpo:abstract         ?abstract ;
              foaf:isPrimaryTopicOf  ?wikipediaLink ;
              rdfs:label            "Cebu"@en
    OPTIONAL
      { ?location  dbpo:thumbnail  ?thumbnail }
    OPTIONAL
      { ?location dbpo:country/rdfs:label ?country }
    OPTIONAL
      { ?location  gsp:lat  ?lat ;
                  gsp:long  ?long
      }
    OPTIONAL
      { ?location dbpo:capital/rdfs:label ?capital }
    FILTER ( lang(?abstract) = "en" )
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Badapur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dos Hermanas"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skarnes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:DualtoneRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Chely_Wright )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rahling"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:BritishExpatriatesInTheUnitedStates ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Justine_Frischmann )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San José"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glienicke"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boulder"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lake Pines"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ガルベ・デ・ソルベ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Guidobaldo Dal Monte"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Guidobaldo Dal Monte"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mettingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sandersdorf-Brehna"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lampedusa e Linosa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sahuarita"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oryol Raion"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Baskets"@en }
    UNION
      { :Baskets  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gasthof Schatzbergalm"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eisenstadt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ザモシツァ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Freistadt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ronda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromLosAngeles,California> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:James_Newton )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cesson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:LivingPeople ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Anna_Book )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mccoy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Carles Gumersind Vidiella"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Carles Gumersind Vidiella"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "L'Hay-Les-Roses"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuwairji"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gampalagudem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rahden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bleicherode"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pawhuska"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elizabeth"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cysoing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chengere"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colina de la Capilla"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blizhnee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT  ?y0
WHERE
  { ?x0  rdfs:label  "Kazakhstan"@en ;
         rdf:type    ?y0
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Å umperk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Volta Redonda"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horry"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Metuchen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bačka Palanka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Сибик-Тыэллах"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:ModernGreek-languageSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Sakis_Rouvas )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neligh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Celle-Levescault"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saalfeld/Saale"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Berka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fannett"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ozolles"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perris"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eidsvoll"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Muskogee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abenra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lazisko"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koggala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bacchus Marsh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Нерский"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "terminal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Janbha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Simanovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  *
WHERE
  { ?location  rdf:type             dbpo:PopulatedPlace ;
              dbpo:abstract         ?abstract ;
              foaf:isPrimaryTopicOf  ?wikipediaLink ;
              rdfs:label            "Nowa Sol"@en
    OPTIONAL
      { ?location  dbpo:thumbnail  ?thumbnail }
    OPTIONAL
      { ?location dbpo:country/rdfs:label ?country }
    OPTIONAL
      { ?location  gsp:lat  ?lat ;
                  gsp:long  ?long
      }
    OPTIONAL
      { ?location dbpo:capital/rdfs:label ?capital }
    FILTER ( lang(?abstract) = "en" )
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ronda"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bua Watthana"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wono"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goody"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:SpanishMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Mikel_Erentxun )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gifhorn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wesley Chapel"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gresford"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Józefów"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuoray-Umusakh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Habaswein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Port d'Alcúdia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gutaj"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xianning"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ajaokuta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:Soul-jazzSaxophonists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Red_Holloway )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishKeyboardists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Ian_Craig_Marsh )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blue Hill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Singen"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bol'shevik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "キャロルトン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPeopleOfSicilianDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jessicka )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strelech'e"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rozstępniewo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sorbollano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stubben"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spring"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bol'shiye Pishchevitsj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yankan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lavaltrie"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kiamfu-Kinzadi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Michigan Center"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ツーク"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St. Polten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Federal Ranch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Корсунка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "A Illa de Arousa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Petropavl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caminha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trebsen"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nashville"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stoyantsj"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Ost und West in der jüdischen Wanderung Ost und West"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Ost und West in der jüdischen Wanderung Ost und West"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴォクレ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:UnitedStatesArmySoldiers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Berry_Gordy )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sainte-Françoise"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cheremukha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chemuraj"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Armoor"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "梅谢尼希"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lake City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Биппен"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Гурган"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "布尔关雅略"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zwiefalten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?populationDemonym ?museum ?person
WHERE
  { ?place  rdf:type       onto:Place ;
            rdfs:label     ?name ;
            onto:country   ?country ;
            onto:isPartOf  ?PartOf
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place  dbprop:populationDemonym  ?populationDemonym }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    FILTER regex(?name, "Roma")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sawl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Macungie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wheeling"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bram'ya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lake San Marcos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adolfo López Mateos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бахио Ларго"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Симла"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Betim"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vassenden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saksonj"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Angulos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Homerville"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:James_Blunt )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xanten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:FemaleRockSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Emilie_Autumn )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arthez-De-Bearn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adidovce"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cashel"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yarinskoye"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Homecroft"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nerchinsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanJazzHornPlayers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Bobby_Shew )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wabern"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "圣塔克拉利塔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Битигхайм-Биссинген"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "スタロコルスンスカヤ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Masal'skaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haina (Kloster)"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balashovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villemur-sur-Tarn"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "哈默尔恩"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Leike"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Leike"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xi Township"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mayberry"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:FemaleRockSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Justine_Frischmann )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishElectronicMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Ben_Daglish )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pattensen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Urol"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kamperland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Youssoufia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ハリスバーグ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Center Point"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Истборн"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mosinee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verkhovyna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Capitan Pablo Lagerenza"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:Boogie-woogiePianists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Meade_Lux_Lewis )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spielberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pepela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Miami Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caldas De Vizela-Sao Miguel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Urunkuj"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Зурган"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1849-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ruppichteroth"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rendeux"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Putzu Idu"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anabar"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mbale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huntingdon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Calmellí"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sigenti"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palzem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nes Ziyyona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eden"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hyner"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gumlow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromSantaMonica,California> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Shelley_Fabares )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nieder-Olm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borgio Verezzi"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sainte-Sévère-sur-Indre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lively"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "İncirlik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Slåttonn Vik Myran"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Slåttonn Vik Myran"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Toroshino"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "'s-Hertogenbosch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bockholtz"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishRockGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Brian_May )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tysons Corner"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ванцина"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castlemaine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Malachie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "httpd" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "nbinfognd"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lørenskog"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santo Domingo Pueblo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mongalla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Velingrad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "科堡"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name2 .
    ?name2   bif:contains  "º" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "º"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novodzherelievskaya"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carboneras de Imala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rushville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jenipapo"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rechlin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Towns Soars in"@en }
    UNION
      { :Towns_Soars_in
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santo Domingo"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromTidworth ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:James_Blunt )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ixtapalapa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borobia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?populationDemonym ?person ?museum ?building
WHERE
  { ?place  rdf:type    onto:Place ;
            rdfs:label  ?name
    OPTIONAL
      { ?place  onto:country  ?country }
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    OPTIONAL
      { ?person  dbprop:residence  ?place }
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    OPTIONAL
      { ?place  dbprop:populationDemonym  ?populationDemonym }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Bangladés")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sierra Vista"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Confluence"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Changji"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ernst"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MrBongoRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Charlie_Palmieri )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pottstown"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weyhe"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Garden Grove"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Volta Redonda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verkhne-Kundryuchenskaya"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Liévin"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Acre"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albany"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwaigern"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Knudsen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sorel-Tracy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:IndieRockDrummers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jim_Black )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suhl"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:SouthAfricanWriters ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Robert_Calvert )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kurnool"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fuxin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blue Springs"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oblást de Kirov"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deeg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dudleyville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Railton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wesseling"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Timuka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tolvayarvi"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sand Springs"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alajarvi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schiffweiler"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Salzungen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanRockSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jim_Peterik )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manly Council"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Appenheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fontenay-sous-Bois"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Innokent'yevskiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meskanaw"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ibate"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stepping"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mijen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1700-01-01") ) && ( ?date < xsd:date("1701-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Чертовицы"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bridgeport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:SmashRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Charlie_Rich )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rudayevka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "マルクトル・アム・イン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Donghae"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromAustin,Texas> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Angela_Ammons )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AfricanAmericanFilmActors ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Eddie_Murphy )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lam Plai Mat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yastrebets"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "IdrottsmÃn"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naranjito"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aledo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alajuela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boschkant"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lapai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frasnes-lez-Anvaing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:YagoPermanentlyLocatedEntity ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:The_Screaming_Jets )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Dag" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Lutro"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vidochov"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "帕萨迪纳"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cannelton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Codlea"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "kinda"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/Ghulam_Mustafa_(businessman)> rdf:type ?x1 .
    <http://dbpedia.org/resource/Ghulam_Mustafa_(businessman)> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/Ghulam_Mustafa_(businessman)>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/Ghulam_Mustafa_(businessman)>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Monica"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "badanie toksycznego działania gąski zielonki tricholoma equestre na mięśnie poprzecznie prążkowane myszy"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "badanie toksycznego działania gąski zielonki tricholoma equestre na mięśnie poprzecznie prążkowane myszy"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Estrela do Norte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Скирос"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusiciansFromTexas ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Marc_Gunn )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rokitno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leduc"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Jan Hoynck van Papendrecht"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Jan Hoynck van Papendrecht"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horeke"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bartrès"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Achim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asansol"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dänemark"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:JewishComposersAndSongwriters ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Alexander_Goehr )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanExperimentalMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Christopher_Willits )
  }
LIMIT   100
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "The Danger Of"@en }
    UNION
      { :The_Danger_Of
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mormon Lake"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuching"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciudad Lerdo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "加東"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amado"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cilacap"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hières-sur-Amby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chalandri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Samernes landsmøte"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Samernes landsmøte"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brutje"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alchedat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reggio di Calabria"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Cowichan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Noja"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Finsterwalde"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heinsberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chamela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bhagalpur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Нижняя Береске"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "カミエン・ポモルスキ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ostrowiec Swietokrzyski"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koterevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goryun"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gunzenhausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Muntendam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arungkeke"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kangar"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "弗利"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hynam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Five Corners"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valley View"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Córdoba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skripino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maloca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tigra"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dacke"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleEducatedAtStPaul'sSchool,London> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Chris_Barber )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Artà"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oued Athmania"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mkuze"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chengde"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Picher"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jiangmen"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1948-01-01;end=1948-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "La Pequeña Muerte"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "La Pequeña Muerte"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adavaram"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zaube"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atoka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tarkhovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Juan Bautista"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cholula de Rivadavia (San Pedro Cholula)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villafranca del Bierzo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mandelbachtal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novonovitskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Trinité"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Simeria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bagnot"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bimbimbie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Riezlern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wunstorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusiciansFromNewJersey ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Sarah_Dash )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Anna Olsen"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Anna Olsen"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elizabethtown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marina di Ragusa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyaberdino-Chelnj"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aktal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "rietavo dvaro sodyba dvaro pastatų ir parko vaizdas iš pietvakarių pusės apie m"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "rietavo dvaro sodyba dvaro pastatų ir parko vaizdas iš pietvakarių pusės apie m"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glastonbury"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanComposers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Bradley_Joseph )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sylt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pottstown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Behrensdorf (Ostsee)"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mayskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwerin"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gonda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Uropetalon" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "susianum" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Náblek"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bauma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caraíbas"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "alcoholkopieermachine"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "alcoholkopieermachine"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishPeopleOfIrishDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Kelly_Osbourne )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zwingenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ньюарк"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Granozzo con Monticello"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St.-Gedeon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vikøyri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maidstone"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Erwin"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Choisy-le-Roi"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Opportunity"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gorjusa"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Linz rdf:type ?x1 .
    dbpr:Linz rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Linz  rdf:type  ?x1 }
    UNION
      { dbpr:Linz  rdfs:label  ?x2 }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solok"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { { {   { ?uri  ?q1  dbpr:Europe }
        UNION
          { dbpr:Europe  ?p1  ?uri }
      }
      { ?uri  rdf:type  dby:Capital108518505 }
    }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pomona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusicalGroupsFromOklahoma ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:For_Love_Not_Lisa )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "da" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "cadc"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mingshui"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leutkirch im Allgäu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1900-01-01;end=1900-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Tamyra_Gray rdf:type ?type .
    dbpr:Tamyra_Gray ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Tamyra_Gray
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Praso"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Akins"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Charols"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?fullName
WHERE
  { ?y  rdfs:label  "Kansas City"@en ;
        rdf:type    dby:YagoGeoEntity ;
        rdfs:label  ?fullName
    FILTER ( lang(?fullName) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kerimäki"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Biran"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Evanston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cooperstown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Worcestershire"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skripino"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kagarlyk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:Percussionists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Ray_Cooper )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Гороховатка"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Groningen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Isabel de Hungría ó el milagro de las rosas drama en cinco actos y siete cuadros"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Isabel de Hungría ó el milagro de las rosas drama en cinco actos y siete cuadros"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prosetin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mawlamyine"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klein Schwechten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Girard Pond"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Broome"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "オジェリェーリエ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "バラックヴィル"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ganzú Laufquen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Doral"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Хаммарланд"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waarland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヒースロー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valls"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ondozero"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1967-06-27;end=1967-06-27;-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Melton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lafayette"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ban Tak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Middlesbrough"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Braye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krapsi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Champéry"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rotenburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lofefle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Urunkuj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ul'yanovshchina"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trachil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Paar miskelken en twee hostieschalen"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Paar miskelken en twee hostieschalen"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xingedan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chosica"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hachiōji"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanJazzMusiciansOfItalianDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Scott_LaFaro )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koterevo"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "São Sebastião do Paraíso"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Es" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "El" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Poder" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Del" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Hombre" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Cantada" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Al" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "Santisimo" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "Con" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "Violines" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "Recitado"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberdorff"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paule"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blick, Mount"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Betalingstelefon"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Betalingstelefon"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("2004-01-01") ) && ( ?date < xsd:date("2005-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:SongwritersFromIllinois ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Big_Bill_Morganfield )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Exel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rockford"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Großenhain"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Großenbrode"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kister"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "the isle of doagh song"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "the isle of doagh song"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ゴルナリ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yavne'el"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "万斯"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Joods Historisch Museum [Publication]"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Joods Historisch Museum [Publication]"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wanglieqiao"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diana"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arzignano"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yinqing Rd"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suolijoki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lage Zwaluwe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ohrdruf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fichtenau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Herndon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Omaha"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Adoration" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "der" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Madonna" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "durch" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Heilige"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lake Bruin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almonte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Балашовка"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sevilla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tampa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soure Municipality"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deurne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wanareja"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Inca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novorossiysk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bellinzona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plainsboro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Friedrichshall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alpirsbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Treviri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rush Springs"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Muthneb"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harker Heights"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weinzierl am Walde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Riverdale"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shijiawan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:LesbianMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Sarah_Bettens )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Tim_Vincent rdf:type ?x1 .
    dbpr:Tim_Vincent rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Tim_Vincent
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Tim_Vincent
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hautmont"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "merke eiermerke"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "merke eiermerke"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cumpas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sverdlovskiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Honokaa"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almada"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zherikhovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Anthony_Borg_Barthet rdf:type ?x1 .
    dbpr:Anthony_Borg_Barthet rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Anthony_Borg_Barthet
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Anthony_Borg_Barthet
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pittsburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sovkhoz Budennovets"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Riverside"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stamford"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Green"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1949-01-01;end=1949-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "wereldkampioenschap ankerkader biljarten in groningen henk scholten aktie"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "wereldkampioenschap ankerkader biljarten in groningen henk scholten aktie"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

CONSTRUCT 
  { 
    ?s ?p ?o .
  }
WHERE
  { ?s  rdf:type  dbpo:Station ;
        ?p        ?o
  }
OFFSET  19000
LIMIT   500
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ommel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusiciansFromNewYorkCity ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Cecil_Taylor )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ケニオン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "キャフタ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lishui Shi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dingxi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altona"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Molodutyn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novonikolayevka"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roja"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albatera"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1930-05-17-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gunpowder"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "General Cabrera"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vandœuvre-lès-Nancy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baiersbronn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "byste av christian sinding larsen"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "byste av christian sinding larsen"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wembley"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Falkensee"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sonnenbühl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ピア"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Labelle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eagle Farm"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:BritishJazzSopranoSaxophonists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Evan_Parker )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Walhonding"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MainstreamRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Hal_Galper )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Riedlingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Urayarra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Traunstein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bytom"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Bergzabern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Александр"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St.-Leger-Du-Bourg-Denis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pinoso"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ehingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bagado"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wanareja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bückeburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grokgak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vinnytsya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Åmot"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Суонтон"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Clovis"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nehe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Пекан Плантейшен"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zörbig"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San José"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luxemburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parobé"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Concepción"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marki"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novaya Derevnya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dipayal Silgadhi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Scheeßel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dodro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heddesheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuss"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Юнионвилл"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "レウラ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?XVar0 ?XVar1 ?XVar2
WHERE
  { ?XVar3  rdf:type  ?XVar4 .
    ?XVar5  rdf:type  dbpo:Film .
    ?XVar3  rdf:type  wde:Q49455
      { ?XVar5  ?XVar6  ?XVar3 }
    UNION
      { ?XVar3  ?XVar6  ?XVar5 }
      { ?XVar3  ?XVar7  wde:Q19803499 }
    UNION
      { wde:Q19803499
                  ?XVar7  ?XVar3
      }
    OPTIONAL
      { ?XVar3  rdfs:label  ?XVar1
        FILTER ( ( lang(?XVar1) = "" ) || langMatches(lang(?XVar1), "en") )
      }
    BIND("individual" AS ?XVar2)
    BIND(?XVar3 AS ?XVar0)
  }
LIMIT   1000
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Friday night football"@en }
    UNION
      { :Friday_night_football
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bongaree"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kwali"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rohr"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reinsdorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tlyustenkhabl'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jmelnitsky"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shimamaki-mura"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Emishti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wurnsdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oltenita"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arungkeke"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Überlingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ミドルタウン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lanely"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cúllar Vega"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "khrebet chernyshëva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhichitsj"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gösen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusiciansFromNewYorkCity ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Dave_Sitek )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grand Rapids"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Emmering"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Portland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  pos:  <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?abstract ?homepage ?birthdate ?death ?facet ?thumbnail ?photo ?label ?lat ?long ?skos ?birthPlace ?deathPlace
WHERE
  {   { dbpr:Marc_Zimmer
                  rdf:type  ?facet
      }
    UNION
      { dbpr:Marc_Zimmer
                  rdfs:label  ?label
        FILTER ( ( lang(?label) = "en" ) || ( lang(?label) = "de" ) )
      }
    UNION
      { dbpr:Marc_Zimmer
                  foaf:name  ?label
      }
    UNION
      { dbpr:Marc_Zimmer
                  dbpo:abstract  ?abstract
        FILTER ( ( lang(?abstract) = "en" ) || ( lang(?abstract) = "de" ) )
      }
    UNION
      { dbpr:Marc_Zimmer
                  foaf:homepage  ?homepage
      }
    UNION
      { dbpr:Marc_Zimmer
                  dbprop:birthDate  ?birthdate
      }
    UNION
      { dbpr:Marc_Zimmer
                  pos:lat  ?lat
      }
    UNION
      { dbpr:Marc_Zimmer
                  pos:long  ?long
      }
    UNION
      { dbpr:Marc_Zimmer
                  dbprop:deathDate  ?death
      }
    UNION
      { dbpr:Marc_Zimmer
                  dbpo:thumbnail  ?thumbnail
      }
    UNION
      { dbpr:Marc_Zimmer
                  dbprop:hasPhotoCollection  ?photo
      }
    UNION
      { dbpr:Marc_Zimmer
                  skos:subject  ?skos
      }
    UNION
      { dbpr:Marc_Zimmer
                  dbpo:birthPlace  ?birthPlace
      }
    UNION
      { dbpr:Marc_Zimmer
                  dbpo:deathPlace  ?deathPlace
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pausa/Vogtland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Daman"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altenheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Мырыла"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beemster"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanHeavyMetalGuitarists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:John_Petrucci )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gardermoen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khonkhino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Formby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teoloyucan"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thonon-les-Bains"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Telford"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barrington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ropesville"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hilmar-Irwin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puumala"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Armensk" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "papir" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "mot" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "influensa"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1641-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gosheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jeddoe"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harvard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Darwin"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Athy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Миронов"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sesto Fiorentino"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Farmington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adams"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cape Espenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oldham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "セイン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koniec"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Markovskaya"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Salvador Atenco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Żuchlów"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gujarva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oxnard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chuchkino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blount Lake"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kennewick"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "København"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ブリッジポート"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusiciansFromVirginia ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jake_E._Lee )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coswig (Anhalt)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sterkfontein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huixquilucan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cino"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Hamn" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "FlorÃ"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Admont"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eulala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?person ?museum ?building
WHERE
  { ?place   rdf:type          onto:Place ;
             rdfs:label        ?name .
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    OPTIONAL
      { ?place  onto:country  ?country }
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Torre de Pisa")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dry Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alto Parnaiba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beresajka"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dahanu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Турята"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maschort"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tiguatón"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rutledge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bradford West Gwillimbury"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "スホロシュニャ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Phoenix"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Armoor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴェスターカッペルン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Syrgenstein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mascouche"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Breaza"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:NothingRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Autechre )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oświęcim"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "James Harden Buries"@en }
    UNION
      { :James_Harden_Buries
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mesquite"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "瓦约纳克斯"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanHipHopRecordProducers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Akon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boyanda"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Farmerville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bura"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dubki"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "prasta alle už auksą brangesne skarbinyczele diewo waiku [k h bogackis] [k h bogackis]"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "prasta alle už auksą brangesne skarbinyczele diewo waiku [k h bogackis] [k h bogackis]"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pangburn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Milhas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morin-Heights"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jimena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seres"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Château-Arnoux-Saint-Auban"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromVenice(city)> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Rossana_Casale )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Snicarte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sabroom"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eva"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plessj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jaen"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morris"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alfdorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Equinunk"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kiryakovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "vandring på gjengrodd vei slettnes i karlsøy"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "vandring på gjengrodd vei slettnes i karlsøy"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanTechnoMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Donald_Glaude )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wells Branch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perelazy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khorpungort"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rheda-Wiedenbrück"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chapel'noye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pokosnyj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shenyang Shi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cuddy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Ribera"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Piedmont"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ringvoll"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zomin"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zlocieniec"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nizhniy Tagil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wooler"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Drømmejobben Nyonkos fortelling"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Drømmejobben Nyonkos fortelling"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dmitriyevka"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dique Lujan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusiciansFromMaryland ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Chester_Thompson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tapa"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matsudo"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strativa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bobraki"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ozzano dell'Emilia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Middlefield"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ozzano dell'Emilia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gardena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Viehdorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khrenishche"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reytarovka"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Åmotfors"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ste.-Valiere"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seggebruch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koeblitz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromBaltimore,Maryland> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Chester_Thompson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soniyasar Sheodansingh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nemours"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kundat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mula"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Juan Y San Pedro Tezompa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quiindy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hannoversch-Munden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Svelvik"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Tour-du-Pin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frechen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ムリネ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plover"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosslare"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bárna"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haldimand"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Massillon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lynn"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Booubyjan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sankt Johann im Pongau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nokomis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suksukan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanPeopleOfSpanishDescent ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Xavier_Cugat )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lipa City"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horgos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT  ?y0
WHERE
  { ?x0  rdfs:label  "Oberengstringen"@en ;
         rdf:type    ?y0
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lovettaz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:RCARecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Bonnie_Tyler )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromPhillipsCounty,Arkansas> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Red_Holloway )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Byford"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nanterre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Merate"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ivnitsj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ghazni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morganton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thüringen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rio Branco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Magdalena Tetela Morelos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Noblesville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hempstead"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fossheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Molebka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:HipHopSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Fergie_(singer)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Langenselbold"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mersin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lescun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carnot"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jummum"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalamae"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Newton Aycliffe"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hayward"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bulgan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Narko"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haseldorf"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { { {   { ?uri  ?q1  dbpr:Mount_Everest }
        UNION
          { dbpr:Mount_Everest
                      ?p1  ?uri
          }
      }
      { ?uri  rdf:type  dbpo:Country }
    }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sheltozero"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Concots"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Norderstedt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Уоллумбилла Север"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abegall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Edgemoor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niterói"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dobricea"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ChildClassicalMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Leila_Josefowicz )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fukui"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bernau bei Berlin"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wait"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:CanadianHeavyMetalGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Chad_Kroeger )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Budapest"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Rotanstoel" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Sjengske"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?p ?date
WHERE
  { ?p  rdf:type  dbpo:Film
    OPTIONAL
      { ?p  dbpo:releaseDate  ?date }
      { ?p  dbpo:starring  dbpr:Woody_Allen }
    UNION
      { ?p  dbpo:director  dbpr:Woody_Allen }
    UNION
      { ?p  dbpo:author  dbpr:Woody_Allen }
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PeopleFromManhattan ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Adrienne_Bailon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Venetia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Hampshire"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kiselevka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pikhten'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?altName ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  {   { ?altName  rdfs:label            "New York"@en ;
                  dbpo:wikiPageRedirects  ?x
      }
    UNION
      { ?x  rdfs:label  "New York"@en }
    ?x  rdf:type  dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?x2
WHERE
  { ?x0  rdf:type         foaf:Person ;
         rdfs:label       ?x2 .
    ?x1  rdf:type         dbpo:TelevisionShow ;
         dbprop:showName  "Breaking Bad"@en ;
         dbprop:starring  ?x0
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Veroia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stobierna"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khandala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marbach am Neckar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1905-01-01;end=1909-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴァルデンブルク"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Machhapuchchhre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kissing"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Урмандеево"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernyshevka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anaheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ウィザム"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plettenberg Bay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Primor'ye"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Topoľčany"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gardner"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Taguig"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zandberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mel'nitsy"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Felipe"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barga"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seyches"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Noyal-sur-Brutz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "West Salem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mukasa-Ngombo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Posadas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "بيريا"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bakchet"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ganeas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Lith"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grefrath"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glen Burnie"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?person ?museum ?building
WHERE
  { ?place   rdf:type          onto:Place ;
             rdfs:label        ?name .
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    OPTIONAL
      { ?place  onto:country  ?country }
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Pizza")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?player  rdf:type              dbpo:SoccerPlayer ;
             <http://dbpedia.org/ontology/Person/height>  ?height ;
             dbpo:position         ?position ;
             foaf:givenName        ?givenName
    FILTER regex(?givenName, "David")
    ?player  dbprop:nationalteam  ?NationalTeam ;
             dbprop:placeOfBirth  ?placeOfBirth ;
             rdfs:label           ?label
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bietigheim-Bissingen"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mertingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shilikty"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mariental"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salmünster"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:County_Mayo rdf:type ?x1 .
    dbpr:County_Mayo rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:County_Mayo
                  rdf:type  ?x1
      }
    UNION
      { dbpr:County_Mayo
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manawatu Wanganui"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harpstedt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eskilstuna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hauzenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アービング"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Temkino"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Antioch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maschort"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moschheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Биктимирово"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hennigsdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moen"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fairwood"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "トハリノ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arminto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jūrmala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "勒沃库森"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baume-les-Dames"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bulin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berry"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Шумановка"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mons"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Olevsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buhler"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Warrah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1838-01-01") ) && ( ?date < xsd:date("1839-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stockbridge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Volodymyrivka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naron"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Olympia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Phillipsburg"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Columbus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tlajomulco De Zuniga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Offingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Libava"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cocotitlan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "At Tur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sergiyev Posad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tara"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wolmirstedt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mulhausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Dubbele" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "griffioen" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "ter" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "waarde" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "van" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "een" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "dubbele" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "stuiver" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "Holland" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "Philips" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "de" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "Schone"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Bentheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Doylestown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kety"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lottstetten"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Usun-Kyuel'"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boonah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fort Saskatchewan"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ropesville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Miguel del Monte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bergkamen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ånge"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Askim"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "克兰伯里"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gaidega"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gongolgon Cowal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pointe-à-Pitre"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pinneberg"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cras"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Завадичи"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Masuika"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buchholz in der Nordheide"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Budaörs"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ダンベリー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Loerbeek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jake_Thackray )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Clo-oose"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oss"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prunet-et-Belpuig"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lebbin"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tiskolovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mount Lebanon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Socah"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berchtesgaden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deeral"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Esch-sur-Alzette"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nusbaum"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vandœuvre-lès-Nancy"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "克里斯特尔莱克"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Mauro_Racca rdf:type ?x1 .
    dbpr:Mauro_Racca rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Mauro_Racca
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Mauro_Racca
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "close Round"@en }
    UNION
      { :close_Round  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ChristianRockGroupsFromCalifornia ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Lost_Dogs )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Boy Scout Troop holding a model seder Brooklyn New York ca s"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Boy Scout Troop holding a model seder Brooklyn New York ca s"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ондалснес"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gartsevo"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hayden"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Посёлок"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chalcatzingo"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Simi Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Regional District of Kitimat-Stikine"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Omaha"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vaghaniya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puerto Morelos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seyches"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nauen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gomez Rendon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Mahattah"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dolgorukovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Subor'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:SongwritersFromNewYork ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:George_Bassman )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ovchukh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Robinson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "hard"@en }
    UNION
      { :hard  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tigra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khotinovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Люлчице ле полюлялко"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Люлчице ле полюлялко"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalyan Dombivli"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altena"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sainte-Céronne-lès-Mortagne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lyndell"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hage"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ibiacu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Żywiec"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tușinu"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ソルト・レーク・シティ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rimsting"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ESP-DiskArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Sun_Ra )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novovoronezhskiy"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Granja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "オブルビ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Duisburg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Breesen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Natal'yevka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lewisville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Löningen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bazarnyye Matani"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "赫米特"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Milo"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Westfield"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Murphy"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "伊達"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ульручьи"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Füssen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Гверёздно"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shaami-Yurt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bulldog"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tasha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carapicuíba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Чагаротар"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Proskurnikovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Л'Э-ле-Роз"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stege, Denmark"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chawntlangpui"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rybnik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Joel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Swieta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bel'sko"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pitcairn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Donald_Glaude rdf:type ?type .
    dbpr:Donald_Glaude ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Donald_Glaude
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lindale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "克拉克斯维尔"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hawkins"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dobarz"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "パーク・リッジ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horred"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pappinen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rathdangan"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Green Haven"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Englewood"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aguilar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Noves de Segre"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frankfort"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xiangjiaqiao"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Otwock"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ashkelon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cijeungjing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Besiktas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fortun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belesende"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanJazzSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Rachelle_Ferrell )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moses Lake North"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanVoiceActors ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jennifer_Lopez )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Qatar rdf:type ?x1 .
    dbpr:Qatar rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Qatar  rdf:type  ?x1 }
    UNION
      { dbpr:Qatar  rdfs:label  ?x2 }
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PeopleFromLondon ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Shara_Nelson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shchorsovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Camyuva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Emsdetten"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bonvard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chilhac"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glenview"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "apsakimas kadangi wieszpats prusu karalus et musu maloningausas ponas isz kellio czeso su didziu nepasimegimmu numanė kad niekam newerti skundininkai tarp prastu zmonu"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "apsakimas kadangi wieszpats prusu karalus et musu maloningausas ponas isz kellio czeso su didziu nepasimegimmu numanė kad niekam newerti skundininkai tarp prastu zmonu"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ニューブリテン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Rossitsa Gradeva"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Rossitsa Gradeva"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marksovskiy"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roddey"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?fullName
WHERE
  { ?x  rdfs:label            "So Afr"@en ;
        dbpo:wikiPageRedirects  ?y .
    ?y  rdf:type              dbpo:Place ;
        rdfs:label            ?fullName
    FILTER ( lang(?fullName) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caln"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Änge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hedmark Fylke"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanMaleSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:A._J._McLean )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montbernard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alcomdale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Natukhayevskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canowindra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anta"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Letterkenny"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hilla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sœurdres"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aldama"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Israel"@en }
    UNION
      { :Israel  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bharatpur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT  ?y0
WHERE
  { ?x0  rdfs:label  "Existence"@en ;
         rdf:type    ?y0
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grenzach-Wyhlen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malå"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amesbury"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Feltre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Jérome" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Pétion" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "député" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "aux" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Etats" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "généraux" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "de" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "maire" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "de" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "Paris" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "en" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "estampe" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "Levachez" .
    ?person  foaf:name     ?name13 .
    ?name13  bif:contains  "sculp" .
    ?person  foaf:name     ?name14 .
    ?name14  bif:contains  "Pétion" .
    ?person  foaf:name     ?name15 .
    ?name15  bif:contains  "porté" .
    ?person  foaf:name     ?name16 .
    ?name16  bif:contains  "en" .
    ?person  foaf:name     ?name17 .
    ?name17  bif:contains  "triomphe" .
    ?person  foaf:name     ?name19 .
    ?name19  bif:contains  "la" .
    ?person  foaf:name     ?name20 .
    ?name20  bif:contains  "fÃte" .
    ?person  foaf:name     ?name21 .
    ?name21  bif:contains  "des" .
    ?person  foaf:name     ?name22 .
    ?name22  bif:contains  "Suisses" .
    ?person  foaf:name     ?name23 .
    ?name23  bif:contains  "de" .
    ?person  foaf:name     ?name24 .
    ?name24  bif:contains  "Chateau" .
    ?person  foaf:name     ?name25 .
    ?name25  bif:contains  "Vieux" .
    ?person  foaf:name     ?name26 .
    ?name26  bif:contains  "Duplessi" .
    ?person  foaf:name     ?name27 .
    ?name27  bif:contains  "Bertaux" .
    ?person  foaf:name     ?name28 .
    ?name28  bif:contains  "inv" .
    ?person  foaf:name     ?name29 .
    ?name29  bif:contains  "del" .
    ?person  foaf:name     ?name30 .
    ?name30  bif:contains  "lan" .
    ?person  foaf:name     ?name31 .
    ?name31  bif:contains  "de" .
    ?person  foaf:name     ?name32 .
    ?name32  bif:contains  "la" .
    ?person  foaf:name     ?name33 .
    ?name33  bif:contains  "Répub" .
    ?person  foaf:name     ?name34 .
    ?name34  bif:contains  "Duplessi" .
    ?person  foaf:name     ?name35 .
    ?name35  bif:contains  "Bertaux" .
    ?person  foaf:name     ?name36 .
    ?name36  bif:contains  "aqua" .
    ?person  foaf:name     ?name37 .
    ?name37  bif:contains  "forti"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromBrooklyn ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Aaliyah )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "The" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Effect" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "of" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Instruction" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "on" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Learners" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Pragmatic" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "Awareness" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "Focus" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "on" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "Refusals"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?coverartVar
WHERE
  { ?subject  dbprop:name    ?name ;
              dbprop:artist  ?artist .
    ?artist   dbprop:name    "Molly Hatchet"@en .
    ?subject  rdf:type       dbpo:Album ;
              dbprop:cover   ?coverartVar
    FILTER regex(str(?name), "Flirtin' With Disaster (Remaster)"@en, "i")
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zipaquira"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yantal'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prakhon Chai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Negreira"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burbach"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanFolkMusicalGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Lost_Dogs )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:WarholSuperstars ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jackie_Curtis )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Steingaden"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromNeathPortTalbot ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Bonnie_Tyler )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Houtaud"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "West Palm Beach"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "托卢卡"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seggiano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weisskirchen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "portrett kristiansund n"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "portrett kristiansund n"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Olmue"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karluk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Syke"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villa Elisa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Priddis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guelph"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Unieszyno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aschersleben"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Konoplivtsi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Key West"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gosau"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rozas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AfricanAmericanBrassMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Freddie_Hubbard )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eflani"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Büdingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uitgeest"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "カツ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bornhöved"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "South San Francisco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Элфин Ков"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Piglio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Çerkezköy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Callaria"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pato"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanSoulMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Roy_C )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gunzenhausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cepeda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zmiyivka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Louhans"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aurach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Natick"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caln"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sanguarzo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bloomingdale"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ust'-Umal'ta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Itapeva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bushy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ブロディギノ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jitra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mühltal"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kapfenberg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Loja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Noubaiha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Glasgow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Toufghine"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "L'anse-au-loup"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fall River"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ratseve"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sterling-Heights"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roetgen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Узынтам"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huaishuicha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ontinyent"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chambéry"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Microregione di San Paolo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pozdyanka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kericho"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciudad de Libres"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zermatt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ballysloe"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leicheng"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Murrhardt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chiefland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ixtapaluca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:CoolJazzMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Stan_Kenton )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Haven"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aretxabaleta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "São Gonçalo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altomünster"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dashkovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1909-01-01;end=1909-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hagen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosenheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malmö/Sturup flygplats"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tandang"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Privol'nyy"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Migennes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanFolkMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Ingrid_Michaelson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kumla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eastman"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Holte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bartlett Cove Seaplane Base"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Piaseczno"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carazinho"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xuzhuangzi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanFolkRockMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:David_Crosby )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:CanadianFemaleSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Marjo )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishHouseMusicGroups ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Faithless )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roseville Chase"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "films mehndi khanu dada churriyan maa puttar"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "films mehndi khanu dada churriyan maa puttar"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kelseyville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Betim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neustadt an der Weinstraße"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sangerhausen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  pos:  <http://www.w3.org/2003/01/geo/wgs84_pos#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT  ?resource ?type ?related ?label ?lat ?long
WHERE
  { ?resource  dct:subject  :Category:Architectural_history ;
              ?p           ?related .
    ?related  rdf:type     ?type
    FILTER ( ( ?type = dbpo:Person ) || ( ?type = dbpo:Place ) )
    OPTIONAL
      { ?related  rdfs:label  ?label }
    OPTIONAL
      { ?related  pos:lat       ?lat ;
                  pos:long      ?long ;
                  dbpo:country  ?country
      }
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hinche"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciudad Obregon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karlovac"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  db-owl: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?ville  rdf:type          db-owl:Settlement ;
            db-owl:inseeCode  ?code ;
            ?attribut         ?valeur
    FILTER ( ?code = "5002" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harmanec"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Filippo Rossi"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Filippo Rossi"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cortes de la Frontera"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kara-Khol'"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サニーベール"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Partido de Guaminí"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gibbsboro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "阿尔皮纳"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uggi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Нуэво-Касас-Грандес"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1941-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prince George"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brynica"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ashchysay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Herrenalb"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "comments after"@en }
    UNION
      { :comments_after
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reutov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1927-06-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yarebitsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Melrose"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Usagre"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Port Protection Seaplane Base"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1920-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asperg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nyland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?populationDemonym ?person ?museum ?building
WHERE
  { ?place  rdf:type      onto:Place ;
            rdfs:label    ?name ;
            onto:country  ?country
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    OPTIONAL
      { ?person  dbprop:residence  ?place }
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    OPTIONAL
      { ?place  dbprop:populationDemonym  ?populationDemonym }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Melbourne")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horve"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sadri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mexico"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tulln an der Donau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tung Chung"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chintamani"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Urol"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nikishikha"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Samer" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "fotogr" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "utenfor" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Domkirken" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "pÃ" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "vei" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "til" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "Samenes" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "landsmÃte" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "pÃ" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "RÃros"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beuren"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ankadiya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "何东道"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanRockGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jim_Peterik )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalaoa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guesálaz"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ケナ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chapel Hill"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolitzheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Susteren"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ironwood"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Serbinów"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?thumb ?entity ?desc ?label
WHERE
  { ?entity  rdf:type       dbpo:Building ;
             dbpo:abstract  ?desc ;
             rdfs:label     ?label
    OPTIONAL
      { ?entity  dbpo:thumbnail  ?thumb }
    FILTER ( lang(?desc) = "en" )
    FILTER ( lang(?label) = "en" )
    ?desc  bif:contains  "extincted"
  }
ORDER BY ?label
OFFSET  0
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Иршат"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guesálaz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Macomer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mons"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paseh"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolatsel'ga"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reading"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Newark"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Kenzo_Suzuki rdf:type ?type .
    dbpr:Kenzo_Suzuki ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Kenzo_Suzuki
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sukmanj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Urchukh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "レイデン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canoas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Queluz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stanton"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Westport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Garland"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Katarayevo"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cynthiana"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sannikovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "1964-8-6-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Svalöv"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Alto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lewedorp"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brossard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Franklin"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "صفافية"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Broekhuizen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:CanadianPost-hardcoreMusicalGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Submission_Hold )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mirandopolis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "伊斯顿"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karatsan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Madimba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trébeurden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Гайдар"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chipipa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wusterhausen/Dosse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gillingham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Солсбери"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?X ?name ?areaTotal
WHERE
  { ?X  dbprop:officialName  ?name ;
        rdf:type             dbpo:Place ;
        dbpo:country         dbpr:Chile
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morrisville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サンラファエル"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hazelwood"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goljschmanowo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwaigern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "City of Goodnews Bay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Veauche"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gonzales"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bridgeport"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Polanica-Zdroj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terenkol"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Betim"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Longueira"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dinuba"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:BritishElectronicMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Paddy_Kingsland )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Taunusstein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hatchet Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lamont"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Регенсбург"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baturaja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Agkali"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dubnica nad Váhom"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chachangda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baltmannsweiler"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Einsiedeln"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sancheong"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ritchie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heze"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vélez-Málaga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plymouth Township"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Conroe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Isesaki"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kendallville"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusiciansFromMichigan ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:DJ_Assault )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schoten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kehrbusch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Żelechów"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castelar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:LivingPeople ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Ronald_Isley )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "斯派"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stockbridge"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tronkheym"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alcañiz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tornabous"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lebetain"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schopfheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Azzano Decimo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Urgub"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bou Hadid"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тукчи"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nunmai"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cempaka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Komyagina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morganton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gomaringen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vallés"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Breanas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dolyna"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marchata"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1905-12-12-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colosimi"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gowurdak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rutbo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pefka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lubec"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plessj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kempele"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Туркменистан"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Petaling Jaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  ?s ?p ?o
WHERE
  { ?s  rdf:type  foaf:person ;
        ?p        ?o
  }
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Theobroma"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atizapán De Zaragoza"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "TV vs Fireplace"@en }
    UNION
      { :TV_vs_Fireplace
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parkano"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gronau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヤンゲバップ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tolkmicko"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aalst"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ridgewood"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baumgarten"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:BrazilianPeopleOfIndigenousPeoplesDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Djavan )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:LGBTMusiciansFromTheUnitedStates ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Cecil_Taylor )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMusicIndustryExecutives ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Berry_Gordy )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gurdon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "博特"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marina di Arbus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Irving"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spreenhagen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ニュー・スムーナ・ビーチ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monument"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chelmsford"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barakhoyevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Liederbach am Taunus"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Satanov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mesa"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernoistochinsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quissama"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "トリーア"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karpovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caesarea"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naranjal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Braşov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cherryville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:WelshPopSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Bonnie_Tyler )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Podgórzyce, Lubusz Voivodeship"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quimbele"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ノルスク"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヤンゲバップ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bridgewater Township"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kabenga"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perow"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "奥克斯纳德"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maspalomas"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:CubanExiles ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Willy_Chirino )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sulzberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Binangonan"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Котерево"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Antanifotsy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Redcar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gridley"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Пауэрс Лейк"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Minsk Mazowiecki"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Würzburg"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oensingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dzhokhu"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "De Panne"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vaudreuil-Dorion"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Getxo"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/ArtistsFromPortland,Oregon> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Miranda_July )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vitoria-Gasteiz"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stein AR"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ウトレラ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Patrocínio Paulista"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schauberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1906-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?thumb ?entity ?desc ?label
WHERE
  { ?entity  rdf:type       dbpo:Place ;
             dbpo:abstract  ?desc ;
             rdfs:label     ?label
    OPTIONAL
      { ?entity  dbpo:thumbnail  ?thumb }
    FILTER ( lang(?desc) = "fr" )
    FILTER ( lang(?label) = "fr" )
    ?desc  bif:contains  "fransisco"
  }
ORDER BY ?label
OFFSET  0
LIMIT   10
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "blasts Coach"@en }
    UNION
      { :blasts_Coach
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Massy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mooloolaba"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cândido Mendes"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "East Orange"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Warstein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palonurmi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "maßos giesmiu knygeles iß wienu ir kittu wokiszku knygu lietuwißkai perguldytos [sudarytojas kristijonas endrikis mertikaitis]"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "maßos giesmiu knygeles iß wienu ir kittu wokiszku knygu lietuwißkai perguldytos [sudarytojas kristijonas endrikis mertikaitis]"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "CLASSY ON"@en }
    UNION
      { :CLASSY_ON  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Egmond-Binnen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishSongwriters ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Russ_Ballard )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Töcksfors"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бакрче"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nemea"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Talagante Province"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "克 城"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naperville"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suizhou"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jyväskylä"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Catamarca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ブシャンチャ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Appen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name
WHERE
  { ?series  rdf:type            dbpo:TelevisionShow ;
             dbpo:releaseDate    ?date ;
             dbpo:showName       ?name ;
             dbprop:numEpisodes  ?episodes ;
             dbprop:language     ?language
    OPTIONAL
      { ?series  dbpo:genre  ?genre }
    FILTER ( xsd:date(?date) >= "2016-01-01"^^xsd:date )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:WarholSuperstars ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jackie_Curtis )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asyma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salisbury Downs"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leverkusen"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plantation of West Forks"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mto wa Mbu"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wertheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khara-Tas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seaside"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ferrisburgh"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT  ?y0
WHERE
  { ?x0  rdfs:label  "Limmat"@en ;
         rdf:type    ?y0
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:HungarianRefugees ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Lili_Kraus )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Voigny"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jandowae"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zembrow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1950-01-01;end=1960-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Donato"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buhler"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dixie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bogarosch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laurentides"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Öhningen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vasai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dobropolje"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Méjannes-le-Clap"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Commune de Boussemghoun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mt Lebanon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanJazzPianists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Kim_Pensyl )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MilitaryBrats ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:James_Blunt )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Sint Janskathedraal"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Sint Janskathedraal"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wollongong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sivachi"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Besigheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Feria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weißkirchen an der Traun"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?country ?population
WHERE
  { ?country  rdf:type     dbpo:Country ;
              rdfs:label   ?country_name ;
              ?population  dbpo:populationTotal
    FILTER ( ?population > 3000000 )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:DartmouthCollegeAlumni ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Paul_Weston )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luvozero"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Providence"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Долгозеро"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Banaz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rambouillet"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moers"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Durham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Briou"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Raids"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1832-01-01") ) && ( ?date < xsd:date("1833-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xiashenjing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tukholma"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leaburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Givet"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orange Park"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Sulpice-de-Royan"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nová Ves pod Pleší"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Edwards"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frenchtown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Handen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waddington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:CajunAccordionists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Wayne_Toups )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waghäusel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Estang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "International"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Braintree"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Florencio Varela Partido"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Flaach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ansan"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wischhafen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cewice"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Puerta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromKilwinning ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Colin_Hay )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishSongwriters ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Julie_Driscoll )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Takaroa"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Курга"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lafayette Hill"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Halstenbek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huete"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dingwall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bolshaya Glubokaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wooroolin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Floris"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Merklingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weitefeld"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verkhniy Berezovets"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Narharpur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wiener Neustadt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Talakh-Arj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "A横路"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Badalona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:ConvertsToHinduism ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Larry_Coryell )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campeche"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Medard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Hans" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "van" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Hemert" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "en" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Peter" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Koelewijn" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "tekenen" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "contract" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "me" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "Phonogram" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "nr" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "Hans" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "van" .
    ?person  foaf:name     ?name13 .
    ?name13  bif:contains  "Hemert" .
    ?person  foaf:name     ?name14 .
    ?name14  bif:contains  "nr" .
    ?person  foaf:name     ?name15 .
    ?name15  bif:contains  "Peter" .
    ?person  foaf:name     ?name16 .
    ?name16  bif:contains  "Koelewijn" .
    ?person  foaf:name     ?name17 .
    ?name17  bif:contains  "koppen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huntersville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:RomaniMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Toni_Iordache )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lewistown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luis M. Cintrón"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pierreville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haymarket"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Neuenahr-Ahrweiler"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Okunëvka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St.-Branchs"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kootwijkerbroek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gilbert"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arli"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ア=アン=ソスノワ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pearl City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanJazzPianists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Kim_Pensyl )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Šafov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reggio di Calabria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "You Miss"@en }
    UNION
      { :You_Miss  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Behrensdorf (Ostsee)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kostyri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teaneck"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Satakunta"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhichitsj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?place ?webSite ?img
WHERE
  { ?place  rdf:type             dbpo:Building ;
            dbprop:locationTown  dbpr:Stockholm ;
            dbprop:thumbnail     ?img ;
            foaf:primaryTopic    ?webSite
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bagurj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grand Prairie"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ガイスリンゲン・アン・デア・シュタイゲ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Smorhul"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quinto"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yverden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trentino"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saffle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Side Lake"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Запорожье"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nova Iguaçu"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aulnay-sous-Bois"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Merke" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "eiermerke"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Embudo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Westpunt"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  {   { ?altName  rdfs:label            "Slovnaft"@en ;
                  dbpo:wikiPageRedirects  ?x
      }
    UNION
      { ?x  rdfs:label  "Slovnaft"@en }
    ?x  rdf:type  dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "An Spidéal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bure"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bankodi"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PuertoRicanFemaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jennifer_Lopez )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almonte"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frei Paulo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "西希腊"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴィーンヌィツャ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Budweis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:CanadianMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Dan_Mangan )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:DixielandJazzMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Chris_Barber )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "利斯戈"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サンティアゴ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "オレンジ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moapa Town"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sankt-Peterburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jersin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "McCrory"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stange Station"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cameron"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ривьер-Пигу"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "瓦赫"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ричардсон"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Scarville"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "miyako district"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Osasco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stockelsdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chapada Gaucha"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sloughhouse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mamane"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:JamaicanMaleSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Sean_Kingston )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pontarlier"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Toikhos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Skyscraper mom"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Skyscraper mom"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hugo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Верх-Алеус"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salem"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vandel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leanyer"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zaporizhia Oblast"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "象山村"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kappelrodeck"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xalapa"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Peretin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Daylesford"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "die wahrheit über deutschland vereine"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "die wahrheit über deutschland vereine"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leutenbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Molodtsovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gießelsdorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kimberly"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sandy Valley"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Treuen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dieppe"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishMaleSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Russ_Ballard )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obermühl"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanMezzo-sopranos ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Pat_Benatar )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Galve de Sorbe"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Juan del Rio"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zierings"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chateauguay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tomasze"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Petrushevo"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alvin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Ely_Calil rdf:type ?x1 .
    dbpr:Ely_Calil rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Ely_Calil
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Ely_Calil
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lagavulin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Damp"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?populationDemonym ?person ?museum ?building
WHERE
  { ?place   rdf:type          onto:Place ;
             rdfs:label        ?name ;
             onto:country      ?country .
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    OPTIONAL
      { ?place  dbprop:populationDemonym  ?populationDemonym }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Ranakpur")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eerbeek"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Centreville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Grange"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "skyscraper mom"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "skyscraper mom"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skierniewice"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyazhino-Vershinka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hartell"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Fergeux"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/RappersFromLosAngeles,California> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Ray_J )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yarmouth"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sévignacq"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korpusa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Itri"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1769-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:John_Parratt rdf:type ?x1 .
    dbpr:John_Parratt rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:John_Parratt
                  rdf:type  ?x1
      }
    UNION
      { dbpr:John_Parratt
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1932/1932-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rommerskirchen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kaub"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "diogenész eldobja a csészéjét"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "diogenész eldobja a csészéjét"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nzeka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boolburra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dawadawa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beire"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Majano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:CommandersOfTheOrderOfTheBritishEmpire ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Brian_May )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Penge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castellar del Vallès"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bunting"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sankt Pete Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lindesnes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puerto del Carmen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kate"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:JazzDrummers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Susie_Ibarra )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lapinjarvi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ustinka"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Talheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montpelier"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Drake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chitungwiza"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:YagoPermanentlyLocatedEntity ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Stealers_Wheel )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mińsk Mazowiecki"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Portrait of Salvador Robert"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Portrait of Salvador Robert"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Congostrina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rambouillet"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Argelès-sur-Mer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Egmont Village"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zagórze"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malibu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Payson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?place ?webSite ?img ?latitude ?longitude
WHERE
  { ?place  rdf:type             dbpo:Building ;
            dbprop:locationTown  dbpr:Stockholm ;
            dbprop:thumbnail     ?img ;
            foaf:primaryTopic    ?webSite
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marbella"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwandorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:RappersFromNewJersey ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Akon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Gleichenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abashiri-gun"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "O Montillón de Arriba"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greenfield Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poitiers"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Westminster"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Knubr'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zemetcheno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanTrumpeters ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Bobby_Hackett )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Сан-Матео"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Līhuʻe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ginebra"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "per la gloriosa promozione alla sacra porpora di gian carlo bandi vescovo d'imola pontefice pio vi sonetto"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "per la gloriosa promozione alla sacra porpora di gian carlo bandi vescovo d'imola pontefice pio vi sonetto"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wiehl"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dagang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saku Parish"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gaylord"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mousseaux-sur-Seine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arangaon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Emboscada"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lengefeld"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berriz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?altName ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  {   { ?altName  rdfs:label            "Bank"@en ;
                  dbpo:wikiPageRedirects  ?x
      }
    UNION
      { ?x  rdfs:label  "Bank"@en }
    ?x  rdf:type  dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Springdale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanSoulSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Curtis_Mayfield )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Salvador"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Ines"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "福尔里弗"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "基诺"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nettetal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Majdan Krolewski"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ferrara"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wardha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Robert_Calvert rdf:type ?type .
    dbpr:Robert_Calvert ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Robert_Calvert
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Loures"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ユカイア"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Pierre-sur-Dives"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Övertorneå"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Mobitel" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "by" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Motorola"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diablo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?s ?birth_date
WHERE
  { ?s  rdf:type        dbpo:Writer ;
        dbpo:birthDate  ?birth_date
    FILTER ( ?birth_date <= "1966"^^xsd:date )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torrão"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasni Okny"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Гайдар"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barntrup"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Daaden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perry Hall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rikaze Diqu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chagarotar"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chiukak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Minde"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mellenbach-Glasbach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mataró"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jeremiah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gäufelden"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sunbury"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "O'fallon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borisoglebsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Clifton"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanDJs ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:DJ_Greyboy )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wartberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Оргул"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thornleigh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montabaur"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alhaurín de la Torre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴィケルスン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wallenfels"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ContemporaryClassicalMusicPerformers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Glen_Velez )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hyner"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cavinti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Golden Valley"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:LGBTRightsActivistsFromTheUnitedStates ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Cher )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Betpouey"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kinterep"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "ulster gp motorraces"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "ulster gp motorraces"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brieselang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cluwak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sishilichengzi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Турята"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carlsbad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al hissu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paihia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ナーベレジヌイェ・チェルヌイ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?fullName
WHERE
  { ?y  rdfs:label  "Genue"@en ;
        rdf:type    dbpo:Place ;
        rdfs:label  ?fullName
    FILTER ( lang(?fullName) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luther"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fort Polk South"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stirling"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cotobade"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chaohu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromProvidence,RhodeIsland> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Bobby_Hackett )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Akzhar"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:LivingPeople ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Tamyra_Gray )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koltash"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Down a Vicious Slam"@en }
    UNION
      { :Down_a_Vicious_Slam
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borutino"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oregon City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("края-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Francisco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cardeñadijo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dillsboro"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Сюськюярви"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Phoenix"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yermak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Хорошевская"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gilching"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:InternationalOpponentsOfApartheidInSouthAfrica ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Harry_Belafonte )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valle de Bravo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Baleine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hommentorp"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meaux"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Safety Harbor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Williamstown"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Учюгей"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Darregueira"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thabit al Kalb"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sestao"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:Pat_Benatar
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kuntsevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chambéry"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nørre Lyngby"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plano"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asbury Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPopSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Sean_Ensign )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Muscatine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Инскои"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "瓦拉斯"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

CONSTRUCT 
  { 
    <http://vfringe.totl.net/2015/2014/2013/activity/LiveMusicInTheWoods> ?p1 ?x2 .
    <http://vfringe.totl.net/2015/2014/2013/activity/LiveMusicInTheWoods> ?p4 ?x3 .
    ?x3 rdf:type ?x5 .
    <http://vfringe.totl.net/2015/2014/2013/activity/LiveMusicInTheWoods> ?p7 ?x6 .
    ?x6 rdfs:label ?x8 .
  }
WHERE
  {   { <http://vfringe.totl.net/2015/2014/2013/activity/LiveMusicInTheWoods>
                  ?p1  ?x2
      }
    UNION
      { { <http://vfringe.totl.net/2015/2014/2013/activity/LiveMusicInTheWoods>
                    ?p4       ?x3 .
          ?x3       rdf:type  ?x5
        }
      }
    UNION
      { { <http://vfringe.totl.net/2015/2014/2013/activity/LiveMusicInTheWoods>
                    ?p7         ?x6 .
          ?x6       rdfs:label  ?x8
        }
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arkawit"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kirchhundem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Friday"@en }
    UNION
      { :Friday  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bilhorod-Dnistrovskyj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:FilipinoActors ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Sharon_Cuneta )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khayrabad"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dabai'an"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("1674-01-01") ) && ( ?date < xsd:date("1675-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hartell"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kissimmee"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Хессмер"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wallington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buhler"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Königsbronn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サン=テティエンヌ=シュル=シャラロンヌ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Norristown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "トルネ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "幌泉郡"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niemcz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Joué-sur-Erdre"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Itapetininga"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mandapeta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Landa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bobryvets"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PeopleSelf-identifyingAsAlcoholics ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:David_Crosby )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1965-05-01;end=1965-06-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roswell"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dibba, Oman"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "South Port Morien"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Longkek"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bartula"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boskoop"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guarulhos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vys'"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwanheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suhl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schweinfurt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yaqum"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Knowledge Village"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bari"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Clark"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Trinite"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Шахиншехр"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valparaíso"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wollongong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harrisonburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Men"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Province de l'Ouest"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lakeport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paleo Faliro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chandi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Аль-Сукна"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vunimbau Creek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fort Fairfield"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khutorovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kota Tinggi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kühlungsborn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "The Sea Ranch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gold Hill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oslob"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Makushin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dserschinski"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Detva"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oelde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wincenta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Storozhno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altos del Rosario"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canonsburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Escondido"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strunino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gleboczyzna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crevillent"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Usagre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dale City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "J van Deventer"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "J van Deventer"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tarragona"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bahlingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Roche-en-Ardenne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chagarotar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mojmonszinho"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Tambo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Carlos_di_Sarli rdf:type ?type .
    dbpr:Carlos_di_Sarli ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Carlos_di_Sarli
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Pueblito"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bonn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishContraltos ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Christine_McVie )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "巴塞罗纳"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Валя"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sapulpa"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caplin Gulch"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Поча"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Egerukhay"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nong Kham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1796-01-01") ) && ( ?date < xsd:date("1797-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Galicia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolbotn"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Basildon"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kebasen"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wamsutter"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?person ?museum ?building
WHERE
  { ?place   rdf:type          onto:Place ;
             rdfs:label        ?name .
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    OPTIONAL
      { ?place  onto:country  ?country }
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Miami")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lan'shinskiy Kar'yer"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bourkes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Helotes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bel'sko"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sanger"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chamula"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montemayor del Río"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusiciansFromManchester ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Simon_Webbe )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Witzenhausen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Šv kazimiero draugijos leidinys kauno kalendorius metams [virš dail v vaitekunas]"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Šv kazimiero draugijos leidinys kauno kalendorius metams [virš dail v vaitekunas]"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ラガビュリン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marktoberdorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?ime ?date
WHERE
  { dbpr:The_Little_Prince
              dbpo:author         ?avtor .
    ?kniga    dbpo:author         ?avtor ;
              dbprop:releaseDate  ?date ;
              dbprop:name         ?ime .
    ?date     rdf:type            ?v
  }
ORDER BY ?date
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bahlingen am Kaiserstuhl"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanFeminists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jessicka )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mystic"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bellingham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Windberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wareham"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:OperaComposers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Hans_Werner_Henze )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "As Sabahānī"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Retortillo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skålbunes"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ambler"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kurortniy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sabia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orland Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Linden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alsdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hartola"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:CanadianDanceMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jane_Child )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fallbrook"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oltenita"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nunmai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Landshut"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kirovskiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morro Do Chapeu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Černyševskoe"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wuhu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Falfurrias"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ol'khovatka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Giengen an der Brenz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bulusan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Croft"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hölding"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanFemaleGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:JD_Samson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bentleigh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schönwalde-Glien"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "乌镇镇"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?altName ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  {   { ?altName  rdfs:label            "Columbia Pictures"@en ;
                  dbpo:wikiPageRedirects  ?x
      }
    UNION
      { ?x  rdfs:label  "Columbia Pictures"@en }
    ?x  rdf:type  dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bolinas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yegindykol'"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grömitz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sartène"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:JapaneseFemaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Anza_(singer)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kimballton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Breisach am Rhein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luckau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gardelegen"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carnarvon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chiclana de la Frontera"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Littleton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caldas da Rainha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jinzhong"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Sidste tog på strækningen Funder Brande Bramminge maj Første del af strækningen blev åbnet og hele strækningen d oktober"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Sidste tog på strækningen Funder Brande Bramminge maj Første del af strækningen blev åbnet og hele strækningen d oktober"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chelema"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mars"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stans"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guangzhou"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kamień Pomorski"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Le Faulq"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korsor"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴォルシェヴォ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalifornien"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rawa"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Unering"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Devils Kitchen"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berezovaya-Polyana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ribeirão Pires"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aldine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rheinsberg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanPeopleOfItalianDescent ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Vince_Guaraldi )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alsip"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тайчжоу"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Luis Potosí"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "3"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monterey"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Helmbrechts"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jezerane"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oleksandrivs'k"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "DeRozan Throws Down"@en }
    UNION
      { :DeRozan_Throws_Down
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yecla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fort Collins"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chon Buri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Istanbul"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Godvik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "As Salwa"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1916-01-01;end=1916-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Or Yehuda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Хаџићи"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Algade" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Acacia" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Blomster"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ardmore"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tomakomai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montijo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harrisburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "The Creepiest Vaults"@en }
    UNION
      { :The_Creepiest_Vaults
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Silver Springs"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1793-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Campana"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasnosel'skiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kingston"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ottestad"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Braganca Paulista"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vigil"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pelkie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hellenthal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Ramon"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hyner"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ambohitrolomahitsy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teno"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Granja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orangeville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Хете"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  pos:  <http://www.w3.org/2003/01/geo/wgs84_pos#>

SELECT  *
WHERE
  { ?s  rdf:type  dbpo:Place ;
        pos:lat   ?lat ;
        pos:long  ?long
    FILTER ( ( ( ( ?lat < 12 ) && ( ?lat > -8 ) ) && ( ?long < -43 ) ) && ( ?long > -63 ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Hyacinthe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deluțu"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  *
WHERE
  { ?player  rdf:type              dbpo:SoccerPlayer ;
             dbpo:birthDate        ?birthDate ;
             <http://dbpedia.org/ontology/Person/height>  ?height ;
             dbpo:position         ?position ;
             rdfs:label            ?label ;
             foaf:givenName        ?givenName
    FILTER regex(?givenName, "David")
  }
LIMIT   200
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rai Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schafstedt"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "コラブリノ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xinzhuang District"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bedong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torchilovka"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stans"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pulau Rakyat"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Darz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villasimius"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dunbarton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Golovnino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jauaraua"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Qurayyah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Soldatovi" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Staji" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Branislava"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kraychiki"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Friedland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khamau-Yurt"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Timirovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Watertown"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("2011-04-06T15:39:45Z-01-01") ) && ( ?date < xsd:date("2012-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cachoeirinha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "India Third Gender Community"@en }
    UNION
      { :India_Third_Gender_Community
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ohope Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aspach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villasanta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pukovaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solers"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ハリスバーグ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Big Rapids"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:Global_Goon
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waldneukirchen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hutthurm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dhokshet"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meldorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vaccarino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Keshalo"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Promklevets"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orgaz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luces"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalthan"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Scarborough"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jaryczów Stary"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:YagoPermanentlyLocatedEntity ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Black_Flag_(band)> )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?series
WHERE
  { ?series  rdfs:type         dbpo:work ;
             dbpo:releaseDate  ?date
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Agourai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Garbejaire"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Choisy-le-Roi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ohis"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dauis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cilacap"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Erbotom II"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Erbotom II"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Auchterarder"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Füssing"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Шицяо"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cynthiana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goianésia do Pará"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soest"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marshall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eisenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ベセル"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ジャマル"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lobonovo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1777-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "watertoren en koeltorens van staatsmijn emma hoensbroek"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "watertoren en koeltorens van staatsmijn emma hoensbroek"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kressbronn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "库欣"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hauppauge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "šº" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "º" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "‰"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pirttipokh'ya"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mucanã"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ukurej"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kochkinj"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salaberry-de-Valleyfield"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jete"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wareham"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laranjeiras do Sul"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Narail"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Figueres"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gazimurskiy Zavod"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laatzen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "毗卢镇"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barsaj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Downey"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caps"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wermelskirchen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Würzberg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aesch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grootebroek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glyndon"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ascheberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Antipolo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "トロソヴォ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Capilla del Señor"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kudagu"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tlaquepaque"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mettenheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Политотдельский"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Triefenstein"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klein Brak River"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ganxitang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jingmen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Martigny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neptune Township"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwabisch Gmund"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thonon-les-Bains"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tepatitlán de Morelos"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Olyphant"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Madiswil"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishSopranos ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Lesley_Garrett )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サポパン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guacamayas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borriana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suyunduk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reedley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ズルツバハ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Романцево"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:UniversalRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Aaliyah )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canipaan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kurrawang Lake"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?thumb ?entity ?desc ?label
WHERE
  { ?entity  rdf:type       dbpo:Place ;
             dbpo:abstract  ?desc ;
             rdfs:label     ?label
    OPTIONAL
      { ?entity  dbpo:thumbnail  ?thumb }
    FILTER ( lang(?desc) = "fr" )
    FILTER ( lang(?label) = "fr" )
    ?desc  bif:contains  "martigny"
  }
ORDER BY ?label
OFFSET  30
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uprussj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Acorizal"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "уезд Абасири"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yutan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Emmersdorf an der Donau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balašicha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jerusalén"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grabenstaett"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cacador"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nakol"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Brulatte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "普沃茨克"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Söderköping"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMusiciansOfPuertoRicanDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jennifer_Lopez )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Irede"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cresseglio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chichihualco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greetsiel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vilshofen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yarmouth"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Piedritas"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ремашта"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lidzbark"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Randolph"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Punilla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMusiciansOfItalianDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Dan_Tyminski )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meerut"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ljungbyhed"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torpa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amurang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Snezhnoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bringen"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Konchezero"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matraszolos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?populationDemonym ?person ?museum ?building
WHERE
  { ?place   rdf:type          onto:Place ;
             rdfs:label        ?name ;
             onto:country      ?country .
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place   onto:isPartOf     ?PartOf .
        ?person  dbprop:residence  ?place .
        ?place   onto:elevation    ?elevation
      }
    OPTIONAL
      {  }
    OPTIONAL
      { ?place  dbprop:populationDemonym  ?populationDemonym }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Chicago")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Estrela do Norte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oloj"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karabuk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bhaguda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cairnryan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Großes nationales Radballstädteturnier"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Großes nationales Radballstädteturnier"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reddick"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anoka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "エルバーン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campton"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cuyahoga Falls"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Granville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Alan_Whetton rdf:type ?x1 .
    dbpr:Alan_Whetton rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Alan_Whetton
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Alan_Whetton
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "カミエン・ポモルスキ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pleshchevitsj"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sal'nitsj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vladimir-Volynskiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lan'shinskiy Kar'yer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "AB" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Lennartsfors"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Darmstadt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Scituate"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Battiest"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アナポリス"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Caroline" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "NAAR"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hassans Walls"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kumbakonam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klosters-Serneus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Humelgem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AfricanAmericanMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:DJ_Assault )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "オルトランジア"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?XVar0 ?XVar1
WHERE
  { ?XVar2  rdf:type  dbpo:Film .
    ?XVar3  rdf:type  dbpo:Person
      { ?XVar2  ?XVar4  ?XVar3 }
    UNION
      { ?XVar3  ?XVar4  ?XVar2 }
    FILTER isLiteral(?XVar3)
    BIND("literal" AS ?XVar1)
    BIND(?XVar3 AS ?XVar0)
  }
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cynthiana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hongshi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Joursac"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Halethorpe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glubokoye"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gilena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アイケ・グエル"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tula"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montargis"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Brabrand" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Kro" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "eller" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Brabrand" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Restauration" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "fotograferet"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Choteau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krenglbach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dzhatiyevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Booral"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Драй Ридж"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boa Vista"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malibu"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tindari"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Sajjad_Ali rdf:type ?type .
    dbpr:Sajjad_Ali ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Sajjad_Ali
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gexoi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chelema"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zambrana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verkhniye Podgorichi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lipnica Donja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  wde:  <http://www.wikidata.org/entity/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?XVar0 ?XVar1 ?XVar2 ?XVar3 ?XVar4
WHERE
  { ?XVar5  ?XVar0    ?XVar6 ;
            rdf:type  dbpo:Film .
    ?XVar7  rdf:type  wde:Q49455
      { ?XVar5  ?XVar8  ?XVar7 }
    UNION
      { ?XVar7  ?XVar8  ?XVar5 }
    OPTIONAL
      { ?XVar0  rdfs:label  ?XVar1
        FILTER ( ( lang(?XVar1) = "" ) || langMatches(lang(?XVar1), "en") )
      }
    OPTIONAL
      { ?XVar0  rdfs:range  ?XVar3 }
    OPTIONAL
      { ?XVar0  rdfs:domain  ?XVar4 }
    BIND(isLiteral(?XVar6) AS ?XVar2)
  }
LIMIT   500
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lommel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishRockGuitarists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Justine_Frischmann )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aragarças"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kabul"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwabach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishSongwriters ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Pete_Burns )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weld"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hazelton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dokkum"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ador'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balagansk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sydney"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uppsala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Kulepung"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Domdidier"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cambria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balotra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chulasa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "annales des sciences physiques et naturelles d'agriculture et d'industrie publiee par la societe royale d'agriculture et volume vol vol st"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "annales des sciences physiques et naturelles d'agriculture et d'industrie publiee par la societe royale d'agriculture et volume vol vol st"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cape Coral"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Purwantoro"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Saulgau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caliente"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Apt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Breitscheid"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palalakhta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サン・ジェローム"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Калкалло"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maranhao"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stadtteil Weiden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Williamsburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "二十九棕榈村"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cañada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Flamingos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dotzigen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Agios Theodoros"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hennigsdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chiriya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ambler"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verkhov'ye Lyutorich"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dce:  <http://purl.org/dc/elements/1.1/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?birthPlace ?birthDate ?description ?workplaces ?field ?museum
WHERE
  { ?person  dbpo:birthDate   ?birthDate ;
             dce:description  ?description
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:field  ?field }
    OPTIONAL
      { ?person  dbprop:workplaces  ?workplaces }
    OPTIONAL
      { ?museum  dbpo:type  :Museum ;
                 ?p         ?person
      }
    ?person  rdfs:label  ?name
    FILTER regex(?name, "William")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Capiata"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wagner"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shemursha"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trémouille"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:BritishSoftRockMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Chris_Rea )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ashland"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Скрипино"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canela Baja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belmont"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quibdo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Flonheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuyendat"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Racine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Quintin-sur-Sioule"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carnoules"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Searchlight"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Estoril"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oak Grove"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sharlota"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sahuayo de Morelos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromNorman,Oklahoma> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Wayne_Coyne )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "sparkebukse"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "sparkebukse"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Onbekend"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Onbekend"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lidsbron"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Zürich ?p ?o .
  }
WHERE
  { dbpr:Zürich  ?p  ?o
    FILTER ( ( ( ! isLiteral(?o) ) || ( lang(?o) = "" ) ) || langMatches(lang(?o), "EN") )
    FILTER NOT EXISTS { dbpr:Zürich  rdf:type      ?o .
                        ?o        rdfs:subClassOf  ?directType
                        FILTER NOT EXISTS { ?o  owl:equivalentClass  ?directType }
                      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suoranda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Union Mills"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cordeiropolis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Imperia"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moapa Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rouvroy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1981-01-01;end=1981-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sundsvall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Langenzersdorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Кэри"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ハミルトン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fodnes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kaiguciems"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?altName ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  {   { ?altName  rdfs:label            "United Health"@en ;
                  dbpo:wikiPageRedirects  ?x
      }
    UNION
      { ?x  rdfs:label  "United Health"@en }
    ?x  rdf:type  dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Melsungen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guardia Piemontese"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tartto"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kuvasay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hangchou"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pascagoula"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Cruz do Capibaribe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poli Crysochous"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Münster"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caldas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gengenbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brasov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guilly"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beloeil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oleiros"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bassenheim"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Ponsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huntingdon"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tambillos"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusicalGroupsFromLondon ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:The_Screaming_Blue_Messiahs )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terrassa"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hellenthal"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tkharino"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morgan"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanMaleSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Ronald_Isley )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Ecole de Fès Distribution des prix du vendredi juillet"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Ecole de Fès Distribution des prix du vendredi juillet"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Casal Qala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:FrenchComposers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jean-Joseph_Mouret )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bebington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Retiro"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trier"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "カルカドーン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wilga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ryomgard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trebisacce"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dimmitt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gelderland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kottsjon"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jarna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Friedland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valier"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Linnich"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harsens Island"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Re Kommune"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Richmond"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cavinti"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Darby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Оэйраш"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pforzheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goldsboro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anjiang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Constanța"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "圣马科斯"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nagapur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Río Grande"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Erlenbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nicholson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Round Rock"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Russkaya Sorma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  db-owl: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?ville  rdf:type          db-owl:Settlement ;
            db-owl:inseeCode  ?code ;
            ?attribut         ?valeur
    FILTER ( ?code = "70584" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belmonte De San Jose"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Millstatt"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhargalanta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Porte"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klein Rönnau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kandern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wesseling"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sulbiate"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "邵陽"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kaiserslautern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuching"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sorbas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salempur"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Presidente Irigoyen"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kapustin Yar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "leike"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "leike"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:JewishAmericanMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Fat_Mike )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mastic"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Горькухино"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chagarotar"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strzegowo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sunndal Kommune"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Darfield"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Njagabaar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stoyantsj"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puumala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:FilipinoChildSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Camile_Velasco )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuxpan"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1964-11-12-01-01") ) && ( ?date < xsd:date("1965-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Rescue Training"@en }
    UNION
      { :Rescue_Training
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanAccordionists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Myron_Floren )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stupava"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "松戸"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gournay-Loizé"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuenbürg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Storanes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Siak"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campbellsville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Millstatt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goryun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Mafraq"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Charleville-Mézières"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hoi An"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xiayingzi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Unha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nuga"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alvin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pelileo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?s ?age
WHERE
  { ?s  rdf:type        dbpo:Writer ;
        rdfs:label      ?writer_name ;
        dbpo:birthYear  ?age
    FILTER ( ?age < "1965-01-01"^^xsd:date )
  }
ORDER BY ASC(?s)
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ellon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wongawallan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korsun-Sjevtsjenkovskyj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("Consulaat-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "University of Alabama"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanVoiceActors ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jennifer_Love_Hewitt )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "South Side Whycocomagh Bay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bichi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hannaches"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Porvoo"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zifta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Achenkirch"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "维尔"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St Paul"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elda"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アルムル"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Safety Harbor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ellison"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:FemalePost-grungeSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Courtney_Love )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staroye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanBluegrassGuitarists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Dan_Tyminski )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sambit"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kasai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guape"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Svedje"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Phuket"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ям"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Republic"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasnoles'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bibione"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    FILTER NOT EXISTS { ?dbpedia  rdf:type  dbpo:Software }
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:date  ?date }
    UNION
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ?date = ""^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ASC(?date)
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Round Rock"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Tor"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "1769-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bukhta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poção"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wola"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Máze"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alton"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bernau bei Berlin"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Melovskij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vicar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Луцино"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Toulouse-Le-Chateau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terekhta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bagh"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Batatais"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wörth am Main"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luckenwalde"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "slugs"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "slugs"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roaring Branch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rumah Durong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Сондика"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chubarikha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gryada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Magnuszew Maly"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laroka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Holbrook"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Bedford"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kellapi"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Watford Stadt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oakland"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arroyo"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gudivada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barkasovo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Druzhba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Homestead"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "华盛顿"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanFemaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Carolyn_Franklin )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leeland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prairie du Chien"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pojoksari"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Smarr"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barnstable"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Illingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "dnevni leptiri insecta rhopalocera zbirke franje košćeca gradskog muzeja varaždin i komparacija s današnjim stanjem istraživanog područja"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "dnevni leptiri insecta rhopalocera zbirke franje košćeca gradskog muzeja varaždin i komparacija s današnjim stanjem istraživanog područja"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elzenzoom"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ballarat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verkhniye Kurchali"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?uri ?label ?abstract ?type
WHERE
  { ?uri  rdfs:label     ?label ;
          dbpo:abstract  ?abstract ;
          rdf:type       ?type
    FILTER ( ?label = "يونيو"@ar )
    FILTER langMatches(lang(?abstract), "ar")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brugg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sils im Engadin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:SwedishDeathMetalMusicalGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Nasum )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uggleberg"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Łąka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kannapolis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ennepetal"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chandgoi"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kelaat El Andaluus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:UruguayanPeopleOfItalianDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Francisco_Canaro )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyoply Stan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koregino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Savoy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "راشا"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sverdlovskij"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Troisdorf"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Breezy Point"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?author ?lang
FROM dbpr:The_Little_Prince
WHERE
  { dbpr:The_Little_Prince
              dbprop:author    ?author ;
              dbprop:language  ?lang
    FILTER ( datatype(?lang) = rdf:Property )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lilac"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tegernsee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=2006-09-01;end=2006-09-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Askar-Kul'tayevo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berkeley Springs"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "チネタ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lompoc"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anna Maria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luxemburg"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beryozovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pöcking"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yegindykol"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Boks"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Boks"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Neustadt an der Saale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Las Chapas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mekhovaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chicago"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Owens Cross Roads"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Helsingborg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Honselersdijk"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paradise"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Norsk"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bugian"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "北马里亚纳群岛"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Regensburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puerto Napo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oudtshoorn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > ";end=1922-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?label
WHERE
  { ?player  rdf:type              dbpo:SoccerPlayer ;
             <http://dbpedia.org/ontology/Person/height>  ?height ;
             dbpo:position         ?position ;
             foaf:givenName        ?gn ;
             dbprop:nationalteam   ?NationalTeam ;
             dbprop:placeOfBirth   ?placeOfBirth ;
             rdfs:label            ?label
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barkovichi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tiflet"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Benjina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manduas"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orlando"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Umea"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mueang Udon Thani"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Negra Sorte"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Negra Sorte"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tri Tôn"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boerne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "De" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "drie" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "matrozen" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "van" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Michiel" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "de" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Ruijter"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skierniewice"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shaqqa"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ravensburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mahilyow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rapperswil-Jona"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schiedam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Асьют"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barrington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberrot"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greenburgh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Musirmj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ahuacatlan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Стеклянная Радица"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kochetovskij"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lacey"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cappel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "デドフスク"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Angerville"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanAccordionists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Myron_Floren )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Craigavon"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Witosławice"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ehrenkirchen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Warm Springs"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Minden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "İscehisar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greencreek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Avondale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huelva"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Groom"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Millas"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Гухраг"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shah Alam"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ningde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Neuenahr-Ahrweiler"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pachuca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Araban"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rees"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laduz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ort"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "敖林西伯乡"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hrušovany u Brna"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "シュシャルイ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Los Hornos"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Socah"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matões"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skowhegan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Сыданиха"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kabri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malaty"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Sigvald Moa"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Sigvald Moa"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gosford"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "presentatie enkele voertuigen die meedoen aan de parijs dakar race van tm januari een van de daf autos wordt bekeken"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "presentatie enkele voertuigen die meedoen aan de parijs dakar race van tm januari een van de daf autos wordt bekeken"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sanddrif"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "West Point"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shahriyar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Fowler holes 79 foot"@en }
    UNION
      { :Fowler_holes_79_foot
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gatton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eltville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oupeye"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "マケーナ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palmdale"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  {   { ?altName  rdfs:label            "Paris"@en ;
                  dbpo:wikiPageRedirects  ?x
      }
    UNION
      { ?x  rdfs:label  "Paris"@en }
    ?x  rdf:type  dbpo:Location
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:country  ?country }
    OPTIONAL
      { ?x  dbprop:category  ?locationCategory }
    OPTIONAL
      { ?x  dbprop:population  ?people }
    OPTIONAL
      { ?x  dbprop:area  ?area }
    OPTIONAL
      { ?x  dbprop:officialName  ?fullName }
    OPTIONAL
      { ?x  dbpo:postalCode  ?postalCode }
    OPTIONAL
      { ?x  dbpo:timeZome  ?time }
    OPTIONAL
      { ?x  dbprop:placeOfBirth  ?important }
    OPTIONAL
      { ?x  dbprop:region  ?region }
    OPTIONAL
      { ?x  dbprop:established  ?originDate }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Filkins"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Decatur"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zaysan"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nagylók"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Markelo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rokkala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "バイエルバッハ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "オリャホヴォ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Кубаляк"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matao"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Providence"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Punta de Moraira"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Byste" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "av" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Christian" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Sinding" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Larsen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lluchmayor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gaimersheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "City of Marmarth"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fabens"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Astmoor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPhilanthropists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jennifer_Lopez )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Cumberland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gulyay-Borisovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horoizumi-gun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wujiaqu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brush"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:Post-bopTrumpeters ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Freddie_Hubbard )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Drahovce"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zaida"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Condom"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pilsen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mcelhany"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aldenhoven"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luoduo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Babinda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sankt Michaelisdonn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nalbu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "トン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Biryul'ki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бесси"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Red Oak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:English-languageSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jennifer_Lopez )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Calhan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Overath"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asker"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grado"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cahuita"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/SongwritersFromGeorgia(U.S.State)> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Johnny_Mercer )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bouillon"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tounfafi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sömmerda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marfino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hilliard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Чарикар"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "诺布尔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Léo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuyen Kang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oblast' di Leningrado"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Franconia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "イサカ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Taucha"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krong Preah Sihanouk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puerto de la Cruz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:FemaleRockSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Christine_McVie )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xian de Garzê"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krokstadelva"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:LGBTMusiciansFromTheUnitedStates ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:JD_Samson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint Lucy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Campana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "安全港"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sabse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lengayang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mijas"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Betpouey"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wheeling"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naperville"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Kinoetic Evolution Collective Collaborative Computer Mediated Creation"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Kinoetic Evolution Collective Collaborative Computer Mediated Creation"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novopol'ye"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:CanadianClassicalViolinists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Leila_Josefowicz )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Siegen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sao Gabriel Da Cachoeira"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perry Hall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lopasj"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cambrils"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Playa del Carmen"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gerhardsbrunn"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Posadas"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ketsch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vestavia Hills"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chermnyye"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromLodi,NewJersey> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Glenn_Danzig )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xàtiva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ロデオ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Iditarod"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ulanqab"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marksovskij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stadtteil Bilk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Norristown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "MG" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Pouchet"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "leads as play is"@en }
    UNION
      { :leads_as_play_is
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luxemburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tunigrama"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tence"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sint-Pieters-Leeuw"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alamogordo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "杰纳勒尔埃斯科贝多"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ibryayevo-Kargali"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Inúbia Paulista"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oak Bowery"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "A Arovy"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staffel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Souls III The Lobby"@en }
    UNION
      { :Souls_III_The_Lobby
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sonkatch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?img ?link
WHERE
  { ?place  rdf:type              dbpo:Building ;
            dbprop:locationTown   dbpr:Stockholm ;
            rdfs:label            ?name ;
            dbpo:thumbnail        ?img ;
            foaf:isPrimaryTopicOf  ?link
    FILTER ( lang(?name) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ewijk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "タラト"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Farwell"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villamarchante"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eskilstuna"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gongzhengjie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Venga-bertani"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Дахау"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tlaquepaque"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Popasnaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lichtenfels"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arnaud"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oehringen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rødby Sogn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Corona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monterrey"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nisswa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Levangerutstillingen" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "fÃr" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Ãpning"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aretxabaleta"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blankenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Media Naranja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Paar" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "miskelken" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "en" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "twee" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "hostieschalen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bixby"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Rita"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blaufelden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ventura"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gombren"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Милютинка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Othe"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ellingsøy"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harburg"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Municipio Ensenada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stoughton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paterson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Cañada Flintridge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rømø Kirkeby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Satellite Beach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elizabeth City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arungkeke"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novaya Vodolaga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waitati"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "伯特利"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Camarasa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pasadena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AfricanAmericanSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Akon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manlleu"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "The Hague"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Ybard"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Edgewater"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maitsoq"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moquehua"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Landiona"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St.-Leger-Dubosq"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Geisenheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Allentown"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuomioja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolonia"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Babenhausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sovkhoz Arkhangel'skiy"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "South Haven"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buddha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Velletri"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bani"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "back to the World"@en }
    UNION
      { :back_to_the_World
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:B._E._Taylor
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тетфор Мин"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barnesville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "バイエルバッハ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wasco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Change"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cardona"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bayangol"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dziarnowo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harisinga"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:GreekExpatriatesInTheUnitedStates ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Sakis_Rouvas )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soline"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kita"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tarcutta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "An" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "historical" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "and" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "critical" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "enquiry" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "into" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "the" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "evidence" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "produced" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "by" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "the" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "Earls" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "of" .
    ?person  foaf:name     ?name13 .
    ?name13  bif:contains  "Murray" .
    ?person  foaf:name     ?name14 .
    ?name14  bif:contains  "and" .
    ?person  foaf:name     ?name15 .
    ?name15  bif:contains  "Morton" .
    ?person  foaf:name     ?name16 .
    ?name16  bif:contains  "against" .
    ?person  foaf:name     ?name17 .
    ?name17  bif:contains  "Mary" .
    ?person  foaf:name     ?name18 .
    ?name18  bif:contains  "Queen" .
    ?person  foaf:name     ?name19 .
    ?name19  bif:contains  "of" .
    ?person  foaf:name     ?name20 .
    ?name20  bif:contains  "Scots" .
    ?person  foaf:name     ?name21 .
    ?name21  bif:contains  "With" .
    ?person  foaf:name     ?name22 .
    ?name22  bif:contains  "an" .
    ?person  foaf:name     ?name23 .
    ?name23  bif:contains  "examination" .
    ?person  foaf:name     ?name24 .
    ?name24  bif:contains  "of" .
    ?person  foaf:name     ?name25 .
    ?name25  bif:contains  "the" .
    ?person  foaf:name     ?name26 .
    ?name26  bif:contains  "Rev" .
    ?person  foaf:name     ?name27 .
    ?name27  bif:contains  "Dr" .
    ?person  foaf:name     ?name28 .
    ?name28  bif:contains  "Robertsons" .
    ?person  foaf:name     ?name29 .
    ?name29  bif:contains  "Dissertation" .
    ?person  foaf:name     ?name30 .
    ?name30  bif:contains  "and" .
    ?person  foaf:name     ?name31 .
    ?name31  bif:contains  "Mr" .
    ?person  foaf:name     ?name32 .
    ?name32  bif:contains  "Humes" .
    ?person  foaf:name     ?name33 .
    ?name33  bif:contains  "History" .
    ?person  foaf:name     ?name34 .
    ?name34  bif:contains  "with" .
    ?person  foaf:name     ?name35 .
    ?name35  bif:contains  "respect" .
    ?person  foaf:name     ?name37 .
    ?name37  bif:contains  "that" .
    ?person  foaf:name     ?name38 .
    ?name38  bif:contains  "evidence"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dalid"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Сватбен костюм"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Сватбен костюм"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Batutine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Silverthorne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Report its Numbers"@en }
    UNION
      { :Report_its_Numbers
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frederick"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalbarri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novodzhereliyevskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Imperia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rushville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kansas City"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Assen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PeopleFromYangon ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Nick_Drake )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gold Run Township"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "奥克代尔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Temple Terrace"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kingiseppskiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santiago de Querétaro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Victoria Harbour"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Severets"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishSongwriters ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Julie_Driscoll )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sonnenbühl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Henares"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kakogawa"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Estelnic"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matamoros"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ナウル"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berwyn"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burbach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frébuans"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barc"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jete"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crystal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guendou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "利堡"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kadikoy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lloret"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "バルガ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Crows Nest"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vandenberg Village"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puerto Palomas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sacramento"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Reza_Pahlavi rdf:type ?x1 .
    dbpr:Reza_Pahlavi rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Reza_Pahlavi
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Reza_Pahlavi
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zlín"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waitpinga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:JASON_MRAZ rdf:type ?type .
    dbpr:JASON_MRAZ ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:JASON_MRAZ
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Igoshevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "silver medallion pass issued by the metropolitan railway no to h l thornhill c"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "silver medallion pass issued by the metropolitan railway no to h l thornhill c"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Donau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?player  rdf:type              dbpo:SoccerPlayer ;
             <http://dbpedia.org/ontology/Person/height>  ?height ;
             dbpo:position         ?position ;
             dbprop:nationalteam   ?NationalTeam ;
             dbprop:placeOfBirth   ?placeOfBirth ;
             foaf:name             ?fullName
    FILTER regex(?fullName, "Robert Lewandowski")
    ?player  rdfs:label          ?label ;
             dbprop:currentclub  ?currentClub
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goryun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tostedt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Middletown"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nisi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gamgadhi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Klaipėdos pieno kombinato ledų cechas Bernardas Aleknavičius"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Klaipėdos pieno kombinato ledų cechas Bernardas Aleknavičius"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sigedang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gannay-sur-Loire"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niantic"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Röblingen am See"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Texcoco de Mora"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staroturbaslj"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marolles-sur-Seine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Merrigal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stadtteil Flughafen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Southbridge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Cruz"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orthez"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "白俄罗斯共和国"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Retortillo"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hardenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burnet"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kvalnes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klimkovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "West Wendover"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caluire-et-Cuire"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ウルスビー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mainaschaff"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lanzarote"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "roundwood park harlesden willesden greater london"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "roundwood park harlesden willesden greater london"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coldwater"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wola Przemykowska"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:20th-centuryClassicalComposers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Darius_Milhaud )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boštanj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanTelevisionComposers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Sean_Callery )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thale"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mackay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solano Inferiore"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xianning"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ravels"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Санта-Пола"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Groß Pankow (Prignitz)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jayton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?country_name (concat(ucase(?country_name), "_", strlen(?country_name)) AS ?country_name_length) ?population (?population AS ?population2)
WHERE
  { ?country  rdf:type              dby:LandlockedCountries ;
              rdfs:label            ?country_name ;
              dbprop:populationEstimate  ?population
    FILTER langMatches(lang(?country_name), "en")
    FILTER ( ?population > 15000000 )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Westport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "What d You Miss"@en }
    UNION
      { :What_d_You_Miss
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hampden"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "阿伦敦"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint Louis"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Conna"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cuisy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villeneuve-de-la-Raho"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Picher"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tocancipa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skolkovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberreute"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bennett"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Askulj"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ko Samui"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Allerod"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tsubame"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Randallstown"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trebbin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Daigny"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Polessk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cattaraugus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paytāw-e Siyāh"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Banbehta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Choiseul Bay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boffalora sopra Ticino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:SwingTrombonists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Tommy_Dorsey )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jean"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Peoria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "comitato direttivo"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "comitato direttivo"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prairie du Chien"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Covarrubias"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Quakertown"@en }
    UNION
      { :Quakertown  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Budukan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Allegre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waiblingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "JÃrgen" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Hansen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Herrenalb"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stevensville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Andeco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seyches"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Balkan" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Sawing" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Cricket"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasnogor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ad"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vinco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torrevieja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hooker"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Redmond"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morinville"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cambrai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vastra Nas"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:RussianFolkMetalMusicalGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Arkona_(band)> )
  }
LIMIT   100
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Stegmaier comments after Round"@en }
    UNION
      { :Stegmaier_comments_after_Round
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ulm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valence-Sur-Baise"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mavrinci"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beauceville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mata de Alcántara"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tallviken"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belfort"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "别尔茨克"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Breskens"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parsberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ярак-Чурма"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Уилмингтон"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rovigo"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valença"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berezovyy"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Курико"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Catole Do Rocha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thaa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malyszyn Dolny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wiesbaden"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Шаранча"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Central"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Łomianki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1510-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lyubechane"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zeralda"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Welahan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Farleigh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rostov-na-Donu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Piero In Bagno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cedar Hill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Resta"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Konchenburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manduas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Annapolis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campana"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greiz"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tschlin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heilbronn"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mellenbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obrub"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Walnut"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Round Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Playa del Carmen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bulandshahr"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  {   { ?altName  rdfs:label            "Ness"@en ;
                  dbpo:wikiPageRedirects  ?x
      }
    UNION
      { ?x  rdfs:label  "Ness"@en }
    ?x  rdf:type  dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manresa"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sentmenat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Holzminden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tinley Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khot'yanj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromLondon ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Shara_Nelson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "斯科特"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sarni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromPittsfield,Massachusetts> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Paul_Weston )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sarova"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Del"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Motril"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mountain Top"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Velgonda"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abomey-Calavi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Johnny_Rivers )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arapiraca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carrollton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Razan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rikaze"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dehij"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Юнионвилл"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arizala"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pfaffenhofen an der Ilm"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Cyprien"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albano Laziale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horse Cave"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yëga"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pegu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bridgewater"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tlazala de Fabela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "embi"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chul'zhan"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "ljubezen"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "ljubezen"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromSpecialAreas,Alberta> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Chad_Kroeger )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pyatnikha"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "ptujska gora vas pogled iz zraka"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "ptujska gora vas pogled iz zraka"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kuopio"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colosimi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Calp"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bykovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "シャンペリー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:GermanPeopleOfSpanishDescent ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Vanessa_Petruo )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brück"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kangar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Giusolana"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:Mizraab  dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nittedal"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St.-Paterne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Güstrow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "埃尔金"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leo-Cedarville"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cannelton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ayrens"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hutthurm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santalovskij"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naranbulag"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Warmian-Masurian"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lobenstein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ekerem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bituruna"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Child Stars Look Like"@en }
    UNION
      { :Child_Stars_Look_Like
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ağlı"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gondomil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Virar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hermin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altzibar-Karrika"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Красная Горка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greenburgh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuoray-Umusakh"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mauá"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusicalGroupsFromRhodeIsland ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Dropdead )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Katzwinkel (Sieg)"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dink"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Уборка"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sarny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jiayuguan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Douliu City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Royston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mills River"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EraRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Johnny_Rivers )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tonki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("1959-09-01-01") ) && ( ?date < xsd:date("1960-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ブレーリャ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "フルシチツェ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stein AR"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "プラサーヴィル"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tongchuan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xinde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weng"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:RhythmGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Vivian_Campbell )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moosbach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gau-Bischofsheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nixa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chamonix"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matthews"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uz'mino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stenungsund"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lyndhurst"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Sarah_Bettens rdf:type ?type .
    dbpr:Sarah_Bettens ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Sarah_Bettens
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Graver"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jamkhandi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cheburgol'"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ryptsjerk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roseville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sandgate"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tipes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosenheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cole Wharf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Herce"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leobalde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Primor'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Escalon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Мекка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusiciansFromVermont ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Dan_Tyminski )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Capitol Heights"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bagaha"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pinedale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Regenstauf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ScottishMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jackie_Leven )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Basse-sur-le-Rupt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goryun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adelanto"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Euclid"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matukeng"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chikwawa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "General Manuel Campos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wagnelée"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tok"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:IslandRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Nick_Drake )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montblanc"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kirchhain"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ダーウィン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:NewAgeSynthesizerPlayers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Constance_Demby )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chulio Hills"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:Avant-gardeJazzMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Evan_Parker )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Longyearbyen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suoranda"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "stridsvärn"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "stridsvärn"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Araucária"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fort Collins"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Pole"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromYakima,Washington> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Sam_Kinison )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kidapawan City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ザルツギッター"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carnegie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chilikar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cubatão"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Akins"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Atanas Damyanov"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Atanas Damyanov"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khredino"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT  ?y0
WHERE
  { ?x0  rdfs:label  "Java (programming language)"@en ;
         rdf:type    ?y0
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brunswick"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yonkers"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Keritang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Зомбки"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aulendorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kosmach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Faxe"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hausen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suddie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salemppur"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verkhnyaya Pyshma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Freeport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amalfi"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Аддо"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ブランドン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haddock"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Meca"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fusagasugá"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "秩父"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teronoh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haderslevhus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lowell"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huelva"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boyolali"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caravia"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paulista"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wilderness"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cremona"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manteca"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belovskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wittman"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnjaRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Mike_Nock )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santalovskij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Township of Parks"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "War"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Denney"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:Wayne_Toups
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gräfelfing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1973-01-01") ) && ( ?date < xsd:date("1974-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jüterbog"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cahokia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Flora" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "von" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Bremen" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "zum" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Gebrauch" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "in" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Schulen" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "und" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "auf" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "Excursionen" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "bearb" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "von" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "Franz" .
    ?person  foaf:name     ?name13 .
    ?name13  bif:contains  "Buchenau" .
    ?person  foaf:name     ?name14 .
    ?name14  bif:contains  "Mit" .
    ?person  foaf:name     ?name15 .
    ?name15  bif:contains  "in" .
    ?person  foaf:name     ?name16 .
    ?name16  bif:contains  "den" .
    ?person  foaf:name     ?name17 .
    ?name17  bif:contains  "Text" .
    ?person  foaf:name     ?name18 .
    ?name18  bif:contains  "gedruckten" .
    ?person  foaf:name     ?name19 .
    ?name19  bif:contains  "Abbildungen"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gammelstaden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lünen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neunkirchen"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pharsalia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Malapindha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Нойда"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Artemisia" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "dubia" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Wall" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "var" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "myriantha" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Wall" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Pamp"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wassenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xilin Gol"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bagnères-de-Luchon"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Etxebarri"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Уиннебейго"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torreperogil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1815-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prescott"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kleinblittersdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stadtteil Sülz"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ngaruawahia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "斯卡伯勒"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("Începutul-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Flögeln"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baltiya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Otta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chaah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mushuni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanDrummers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Keith_Carlock )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hermany"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Steinwiesen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Budishche"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boskoop"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sint-Oedenrode"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marty"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Баладжхар"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アスペン・ヒル"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hico"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stadtteil Rodenkirchen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "バンジュル"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint Albert"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shchel'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haluo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valdelamatanza"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Edemissen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pirenopolis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMusicArrangers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Don_Redman )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Berwick"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:ChildrenOfHolocaustSurvivors ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Gene_Simmons )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Henne Strand"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:Jazz-funkTrumpeters ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Freddie_Hubbard )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:NewZealandEmigrantsToAustralia ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Mike_Nock )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tembisa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hecq"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Broken Arrow"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burbank"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lamong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heath"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perelazy"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwarzenbek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ScottishFemaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Eddi_Reader )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Metamora"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Harsens Island"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishSongwriters ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Simon_Le_Bon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Gabriela"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Gabriela"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trou du Nord"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kedi"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kapunda"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torquay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bludenz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jhang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vokhtozero"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "1982-02-02-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lézignan-Corbières"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Patos Do Piaui"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schönaich"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ostrhauderfehn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dyrpa"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manrèse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chur"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "グレンミルズ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wasior"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lake Lure"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:DineAloneRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:The_Living_End )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yanglou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tonalá"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bironico"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1930-01-01;end=1935-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bua"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Emmendingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanDiscoMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Gloria_Gaynor )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1949-01-01;end=1949-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vnukovichi"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Argelès-sur-Mer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanSaxophonists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Red_Holloway )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cave City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Farnham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?t
WHERE
  { ?y  dbpo:binomialAuthority  dbpr:Johan_Christian_Fabricius ;
        dbprop:type           ?t
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mirebeau-sur-Bèze"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Centennial"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サン=ジャン=ド=リヴェルセー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moerkerke"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rejowiec"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lueschow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Massy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サン・マルタン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bomut"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morkatj"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mukwonago"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nedre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tippett"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fuerstenberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Akmenė"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Surprise"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ammeberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bilimora"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Legislation" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "signed" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "by" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "President" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Kennedy" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "September" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "created" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "new" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "United" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "States" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "Arms" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "Control" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "and" .
    ?person  foaf:name     ?name13 .
    ?name13  bif:contains  "Disarmament" .
    ?person  foaf:name     ?name14 .
    ?name14  bif:contains  "Agency" .
    ?person  foaf:name     ?name15 .
    ?name15  bif:contains  "The" .
    ?person  foaf:name     ?name16 .
    ?name16  bif:contains  "President" .
    ?person  foaf:name     ?name17 .
    ?name17  bif:contains  "named" .
    ?person  foaf:name     ?name18 .
    ?name18  bif:contains  "William" .
    ?person  foaf:name     ?name19 .
    ?name19  bif:contains  "Foster" .
    ?person  foaf:name     ?name20 .
    ?name20  bif:contains  "Former" .
    ?person  foaf:name     ?name21 .
    ?name21  bif:contains  "defence" .
    ?person  foaf:name     ?name22 .
    ?name22  bif:contains  "and" .
    ?person  foaf:name     ?name23 .
    ?name23  bif:contains  "foreign" .
    ?person  foaf:name     ?name24 .
    ?name24  bif:contains  "aid" .
    ?person  foaf:name     ?name25 .
    ?name25  bif:contains  "official" .
    ?person  foaf:name     ?name27 .
    ?name27  bif:contains  "head" .
    ?person  foaf:name     ?name28 .
    ?name28  bif:contains  "the" .
    ?person  foaf:name     ?name29 .
    ?name29  bif:contains  "agency" .
    ?person  foaf:name     ?name30 .
    ?name30  bif:contains  "The" .
    ?person  foaf:name     ?name31 .
    ?name31  bif:contains  "creation" .
    ?person  foaf:name     ?name32 .
    ?name32  bif:contains  "for" .
    ?person  foaf:name     ?name33 .
    ?name33  bif:contains  "the" .
    ?person  foaf:name     ?name34 .
    ?name34  bif:contains  "first" .
    ?person  foaf:name     ?name35 .
    ?name35  bif:contains  "time" .
    ?person  foaf:name     ?name36 .
    ?name36  bif:contains  "by" .
    ?person  foaf:name     ?name37 .
    ?name37  bif:contains  "an" .
    ?person  foaf:name     ?name38 .
    ?name38  bif:contains  "act" .
    ?person  foaf:name     ?name39 .
    ?name39  bif:contains  "of" .
    ?person  foaf:name     ?name40 .
    ?name40  bif:contains  "Congressof" .
    ?person  foaf:name     ?name41 .
    ?name41  bif:contains  "special" .
    ?person  foaf:name     ?name42 .
    ?name42  bif:contains  "organization" .
    ?person  foaf:name     ?name44 .
    ?name44  bif:contains  "deal" .
    ?person  foaf:name     ?name45 .
    ?name45  bif:contains  "with" .
    ?person  foaf:name     ?name46 .
    ?name46  bif:contains  "arms" .
    ?person  foaf:name     ?name47 .
    ?name47  bif:contains  "control" .
    ?person  foaf:name     ?name48 .
    ?name48  bif:contains  "and" .
    ?person  foaf:name     ?name49 .
    ?name49  bif:contains  "disarmament" .
    ?person  foaf:name     ?name50 .
    ?name50  bif:contains  "matters" .
    ?person  foaf:name     ?name51 .
    ?name51  bif:contains  "emphesizes" .
    ?person  foaf:name     ?name52 .
    ?name52  bif:contains  "the" .
    ?person  foaf:name     ?name53 .
    ?name53  bif:contains  "high" .
    ?person  foaf:name     ?name54 .
    ?name54  bif:contains  "priority" .
    ?person  foaf:name     ?name55 .
    ?name55  bif:contains  "that" .
    ?person  foaf:name     ?name56 .
    ?name56  bif:contains  "attaches" .
    ?person  foaf:name     ?name58 .
    ?name58  bif:contains  "our" .
    ?person  foaf:name     ?name59 .
    ?name59  bif:contains  "effort" .
    ?person  foaf:name     ?name60 .
    ?name60  bif:contains  "in" .
    ?person  foaf:name     ?name61 .
    ?name61  bif:contains  "this" .
    ?person  foaf:name     ?name62 .
    ?name62  bif:contains  "directionMr" .
    ?person  foaf:name     ?name63 .
    ?name63  bif:contains  "Kennedy" .
    ?person  foaf:name     ?name64 .
    ?name64  bif:contains  "said"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:BeatGenerationWriters ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Ken_Kesey )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sovdozero"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greve In Chianti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kassino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zuhatzu Kuartango"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gyaur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ケレタロ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stockport"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Molyobka"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bretanha"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rösrath"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elz"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mutsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "David" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Richards" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Dafydd" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Ionawr" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "print"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Portland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ukolovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blanco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Przhevalskoye"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Champery"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tokushima"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zherebut"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "era Restanca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niµ"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Medebach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aquiraz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barrington"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Citrus Heights"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1904-01-01;;-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Benicàssim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pojoksari"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eberschwang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altamonte Springs"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diana"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ribadavia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Azuqueca de Henares"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dudinka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laucha an der Unstrut"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アミズール"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rio Grande City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maricá"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Uttarakhand ?p1 ?x2 .
    dbpr:Uttarakhand ?p4 ?x3 .
    ?x3 rdf:type ?x5 .
    dbpr:Uttarakhand ?p7 ?x6 .
    ?x6 rdfs:label ?x8 .
  }
WHERE
  {   { dbpr:Uttarakhand
                  ?p1  ?x2
      }
    UNION
      { { dbpr:Uttarakhand
                    ?p4       ?x3 .
          ?x3       rdf:type  ?x5
        }
      }
    UNION
      { { dbpr:Uttarakhand
                    ?p7         ?x6 .
          ?x6       rdfs:label  ?x8
        }
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "シーベック"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brovst"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ambleside"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Inkpen"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Besse-et-Saint-Anastaise"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishVegetarians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Brian_May )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almaraz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Legionowo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skarpnäck"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rohrdorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pahrump"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Пасадина"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Östringen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mechanicsville"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kyrksæterøra"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vostryakovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dotzigen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Simonovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "朱家角镇"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Derkunskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "2012-10-25T11:40:43Z-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Simorzha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nova Iguaçu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1936-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berenda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuilly-sur-Seine"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palma de Mallorca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haarlem"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tindari"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matungao"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khuntgaon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chilpancingo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/AlumniOfKing'sCollegeLondon> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Yiruma )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishDanceMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Shara_Nelson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ruse"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lipscomb"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosmalen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Wayne_Toups rdf:type ?type .
    dbpr:Wayne_Toups ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Wayne_Toups
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nykøbing Falster"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Casa Grande"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Township of Weimer"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palaldo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kamichigonoki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hellem"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sérigny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sardroud"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  pos:  <http://www.w3.org/2003/01/geo/wgs84_pos#>

SELECT  *
WHERE
  { ?s  rdf:type  dbpo:Place ;
        pos:lat   ?lat ;
        pos:long  ?long
    FILTER ( ( ( ( ?lat < -47 ) && ( ?lat > -67 ) ) && ( ?long < -130 ) ) && ( ?long > -150 ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Платт Сити"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sambit"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Loveland"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St. Eustache"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Catoosa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Калайтановка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:GermanRockSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Vanessa_Petruo )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Macuspana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cruquius"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciudad Acuna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromMontgomeryCounty,Maryland> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Tamyra_Gray )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guizhaguina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bashingu"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Holloman Air Force Base"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skatinskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klyuchevka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sergeant Bluff"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Riito"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ontinyent"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Urucará"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Erku"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gratz"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rohtak"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jalapa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kitzbühel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staroabramkino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanFilmActors ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Shelley_Fabares )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dem'yanki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Schwartau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shrewsbury"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burolo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tarenga"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dobbertin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Francavilla in Sinni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dce:  <http://purl.org/dc/elements/1.1/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?birthPlace ?birthDate ?description ?workplaces ?field ?museum
WHERE
  { ?person  dbpo:birthPlace  ?birthPlace ;
             dbpo:birthDate   ?birthDate
    OPTIONAL
      { ?person  dbpo:field  ?field }
    OPTIONAL
      { ?person  dbprop:workplaces  ?workplaces }
    OPTIONAL
      { ?person  dce:description  ?description }
    OPTIONAL
      { ?museum  dbpo:type  :Museum ;
                 ?p         ?person
      }
    ?person  rdfs:label  ?name
    FILTER regex(?name, "Felipe II")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cheju"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "卢卡"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Werther"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zuazo de Cuartango"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Louzouer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Fosca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanHouseMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Stacey_Q )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cesson"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwallungen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lipa"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Controne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aniwa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Clarita"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chon Buri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Osterburken"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goodyear"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goldboro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asiago"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shchuplovo"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palmi"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kayerkan"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villas de la Ventosa"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhelan'ye"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Alicia_J._Rose )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Umina Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khasaut"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bhendra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arnhem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Veddige"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Skrivemaskin"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Skrivemaskin"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AfricanAmericanSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Eddie_Murphy )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lagunitas-Forest Knolls"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アライアンス"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yahila"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ribeirão das Neves"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luz-Saint-Sauveur"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Geislingen an der Steige"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Nerea" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Artesero" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Bernal"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bran"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morisset"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Isanti"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vicam (switch)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "United States Minor Outlying Islands"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stanford"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villanueva de las Torres"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Theobroma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ジューリー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wapiti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cala Pira"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stare Selo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bangor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Llanhennock"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dungannon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  gsp:  <http://www.opengis.net/ont/geosparql#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  *
WHERE
  { ?location  rdf:type             dbpo:PopulatedPlace ;
              dbpo:abstract         ?abstract ;
              foaf:isPrimaryTopicOf  ?wikipediaLink ;
              rdfs:label            "Europe"@en
    OPTIONAL
      { ?location  dbpo:thumbnail  ?thumbnail }
    OPTIONAL
      { ?location dbpo:country/rdfs:label ?country }
    OPTIONAL
      { ?location  gsp:lat  ?lat ;
                  gsp:long  ?long
      }
    OPTIONAL
      { ?location dbpo:capital/rdfs:label ?capital }
    FILTER ( lang(?abstract) = "en" )
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Worbis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kiyosu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jim_Peterik )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ngoro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:YagoPermanentlyLocatedEntity ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:The_Screaming_Jets )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villeneuve VD"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/PeopleFromKingston,Jamaica> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Sean_Kingston )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/RappersFromMiami,Florida> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Flo_Rida )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teronoh"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orneta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Taean-gun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Downey"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lachy"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kristianstad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Serock"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Panticosa"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anahuac"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?XVar0 ?XVar1
WHERE
  { ?XVar2  rdf:type  dbpo:Film .
    ?XVar3  rdf:type  dbpo:Person
      { ?XVar2  ?XVar4  ?XVar3 }
    UNION
      { ?XVar3  ?XVar4  ?XVar2 }
    FILTER isLiteral(?XVar2)
    BIND("literal" AS ?XVar1)
    BIND(?XVar2 AS ?XVar0)
  }
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kutenholz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuoray-Umusakh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Equi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Staraya Burya"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kristianstad"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:CapitolRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Johnny_Mercer )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Duldug"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cimarron"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Antonio de Prado"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "マウントプレザント"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almazan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanRockSongwriters ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Paul_Stanley )
  }
LIMIT   100
"
"PREFIX  p:    <http://dbpedia.org/property/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT  *
WHERE
  { ?player  rdf:type              dbpo:SoccerPlayer ;
             dbpo:birthDate        ?birthDate ;
             <http://dbpedia.org/ontology/Person/height>  ?height ;
             dbpo:position         ?position ;
             rdfs:label            ?label ;
             foaf:givenName        ?givenName
    FILTER regex(?givenName, "Thomas")
    ?player  p:nationalteam  ?NationalTeam
  }
LIMIT   20
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hennstedt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barra Do Pirai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sandy"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Damblu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "1941-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zacoalco de Torres"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ubud"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ActorsFromNewYorkCity ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Adrienne_Bailon )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/MusicalGroupsFromWashington,D.C.> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Shudder_to_Think )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caps"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heinsberg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korov'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pearl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Camira"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ghosgawan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бомон-дю-Ванту"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mallie"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:SongwritersFromIndiana ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Hoagy_Carmichael )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trogen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ohio University Airport-Snyder Field"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stoyantsj"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PulitzerPrizeWinners ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Hank_Williams )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Solebillede fra ukendt skole"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Solebillede fra ukendt skole"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Everswinkel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Demotte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bijaha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jacona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manorville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nast"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Homerville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beuxes"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:The_Joggers rdf:type ?type .
    dbpr:The_Joggers ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:The_Joggers
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bürstadt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zabrze"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strzelce"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deba Habe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Colline Rwanda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teolocholco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Herzebrock-Clarholz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "沃基根"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cherepovo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lima"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hoszcza"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bergheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cascais Municipality"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Walnut Cove"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cerignola"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kowt-e `Ashrow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Victoria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ho-Chi-Minh-Stadt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guoyang Town"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sint-Truiden"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1917-01-01;end=1930-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karabalyk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rockford"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ewan"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Overland Park"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moschheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wollongong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Сан Хосе де Ла-Ринконада"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "亚斯"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bomen"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "シェリ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Ukjent"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Masyaf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Penn beats Pennsbury in"@en }
    UNION
      { :Penn_beats_Pennsbury_in
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kulai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "l'Alfàs del Pi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baljurashi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanFemaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Shelby_Flint )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Irving"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arguinano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AtlanticRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:James_Blunt )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canning Vale"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Уинтер Хейвен"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?country_name ?population
WHERE
  { ?country  rdf:type              dbpo:Country ;
              rdfs:label            ?country_name ;
              dbprop:populationTotal  ?population
    FILTER ( ?population > 3000000 )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asherton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Taggia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skowhegan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bovina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ケーリー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Osasco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Denniston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wang Saem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tempe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Курмаевка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hières-sur-Amby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tiros"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aliso Viejo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Needham"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tarragona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Opwijk"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "two works on arabic bibliography"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "two works on arabic bibliography"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bellevue"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Joliette"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Санту Тирсу"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Angoville-sur-Ay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skogsböle"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San José"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weatherford"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monticello"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perazancas"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тетеревни"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oriol"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Muiden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ishkulovo"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Smokovec"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromBerlin ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Kurt_Tucholsky )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Loubomo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Żelechów"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ジューリー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "eglise notre dame ancienne cathédrale"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "eglise notre dame ancienne cathédrale"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Apui"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diedorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アスクロ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arkawit"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spanga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ガ=ランクワ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Makuyuni"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Smalfjordnes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Geyve"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strzelce"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sorbollano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eagan"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lar'yak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mill"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuhayy"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1780-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Starry Frolovskiy Yam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bain-de-Bretagne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Silická Jablonica"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Union City"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hayes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burtonsville"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwalbach am Taunus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valdín"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Makakilo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thermalbad Wiesenbad"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rellingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Noisy-le-Grand"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ベーヴェルン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?populationDemonym ?person ?museum ?building
WHERE
  { ?place   rdf:type          onto:Place ;
             rdfs:label        ?name ;
             onto:country      ?country .
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    OPTIONAL
      { ?place  dbprop:populationDemonym  ?populationDemonym }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Australia")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Fotograf" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Normann"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "安城"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Exmorra"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:SwingBandleaders ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Don_Redman )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sargans"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trier"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cherepovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lyubcha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Cruz de Tenerife"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diksmuide"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nimbin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marathon"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albaida"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rudrapur"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ronneburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bradford"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Лаваль"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "列治文山"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Appin"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberlin"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1968-01-01;end=1968-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Batang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rojales"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tharaka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wayland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Steglitz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kleinmachnow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shesternya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Warra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Within India"@en }
    UNION
      { :Within_India
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Le Pin-Murelet"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Milwaukie"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Andora"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Penn beats"@en }
    UNION
      { :Penn_beats  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanHeavyMetalSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Glenn_Danzig )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Severnoye Butovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Czarne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishElectronicMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Adamski )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Brij_Singh rdf:type ?x1 .
    dbpr:Brij_Singh rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Brij_Singh
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Brij_Singh
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burtrask"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/PeopleFromBerwyn,Illinois> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jim_Peterik )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "München"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castalla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Älandsbro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "West Bend"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beniajan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Navsari"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Carlos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huntley"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mweka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gosau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanMusicalTheatreActors ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Barbra_Streisand )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyner"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terni"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1968-01-01;end=1968-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "大阪"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Conroe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Claremore"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Хиндрингем"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cesson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morigny-Champigny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Franske" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "fiskere" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "VestgrÃnland" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "juli"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:YagoPermanentlyLocatedEntity ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Mizraab )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kinkala"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grisham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elsie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Xbox Will Report its"@en }
    UNION
      { :Xbox_Will_Report_its
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deary"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "キャノンズバーグ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kouloukonas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moosburg an der Isar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "パランプ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "オーステルヘッセレン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coblenza"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coalcomán de Matamoros"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montijo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caravaca de la Cruz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marsaz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bom Sucesso De Itarare"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bolingbrook"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vikingstad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bran"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chilgir"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barueri"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hughesville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atoka"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hellem"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ust'-Telenguj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanFemaleSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Fergie_(singer)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kincon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sidney"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thalwil"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poplar Bluff"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lanus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Билинга"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eichenbühl"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alcoba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pawtucket"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Halifax"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gornyy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dechra Rouached"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gaißach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sinton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusiciansFromNewJersey ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Akon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Brulatte"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borszczów"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sorzuy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brossard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wörrstadt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anapskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?thumb ?entity ?desc ?label
WHERE
  { ?entity  rdf:type       dbpo:Building ;
             dbpo:abstract  ?desc ;
             rdfs:label     ?label
    OPTIONAL
      { ?entity  dbpo:thumbnail  ?thumb }
    FILTER ( lang(?desc) = "fr" )
    FILTER ( lang(?label) = "fr" )
    ?desc  bif:contains  "disparue"
  }
ORDER BY ?label
OFFSET  0
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nicolás Romero"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Maria Capua Vetere"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "市原"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salles-Curan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vila Franca de Xira"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:ItalianPopSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Gazebo_(musician)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nurmoyla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hyner"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saltykovo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gangelt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gujba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sóller"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:Vince_Guaraldi
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "圣荷西"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Helsingor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Веселая Роща"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ubly"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Souls III The"@en }
    UNION
      { :Souls_III_The
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manzanillo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kirschweiler"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Пустынское"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hommentorp"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Baskets from NBA"@en }
    UNION
      { :Baskets_from_NBA
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Noaillan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Bildnis Heinrich Sibaeus"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Bildnis Heinrich Sibaeus"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kubang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Freiberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hamm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "瓦克"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ottersberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Martillac"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jēkabpils"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laucha an der Unstrut"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vale de Mendiz"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hirzenberg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Muleshoe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pooler"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eberswalde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ghotki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jete"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:IdolSeriesJudges ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jennifer_Lopez )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Staffelstein"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kvetna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torla"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eylau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crockett"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Key West"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Philippeville"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Texas City"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Knut Sigurd Nordal"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Knut Sigurd Nordal"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PeopleFromBrooklyn ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Special_Ed )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rhine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nova Pazova"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "slåttonn vik myran"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "slåttonn vik myran"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "阿"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "leads as"@en }
    UNION
      { :leads_as  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adelaida"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bolkhov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yosemite Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Curino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ozernitskij"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Andorinha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yerunakovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?X ?name
WHERE
  { ?X        dbprop:officialName  ?name ;
              rdf:type             dbprop:Place ;
              dbpo:country         dbpr:Chile .
    dbpr:Chile  rdf:type           dbprop:country
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kichanas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:WestCoastBluesMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Eddie_Vinson )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Demidova"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kramim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reinbek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tammisaari"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pentland"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Evanston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Allentown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Os"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ancek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chunskiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ジー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laon"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Holte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Biryuch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buftea"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Energodar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nittedal"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Bedford"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jeddo"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1979-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:FinnishHeavyMetalMusicalGroups ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Silentium )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nambour"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "キングスランド"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kelaat El Andaluus"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  pos:  <http://www.w3.org/2003/01/geo/wgs84_pos#>

SELECT DISTINCT  ?person1 ?birthplace1 ?person2 ?birthplace2 ?lat1 ?long1 ?lat2 ?long2
WHERE
  { ?person1  rdf:type         dbpo:Person ;
              dbpo:birthPlace  ?birthplace1 ;
              dbpo:influenced  ?person2 .
    ?person2  dbpo:birthPlace  ?birthplace2
    OPTIONAL
      { ?birthplace1  pos:lat  ?lat1 ;
                  pos:long  ?long1 .
        ?birthplace2  pos:lat  ?lat2 ;
                  pos:long  ?long2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Porsgrunn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:IdolSeriesJudges ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Sass_Jordan )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sardek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nerja"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "celjski park"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "celjski park"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gandia"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bol'she-Gremyacheye"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fort Garland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1890-01-01;end=1900-01-01;-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "圣马特奥"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1950-01-01;end=1960-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuhofen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sounoukana"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kotansj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aladdin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "1965-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yalosar'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?movie year(?date)
WHERE
  { ?movie  rdf:type          dbpo:Film ;
            dbpo:releaseDate  ?date
    FILTER ( year(?date) = "2015" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Readyville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Labukta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "佐倉"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Velletri"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Потьма"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Port Edward"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Potte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("1932/1932-01-01") ) && ( ?date < xsd:date("1933-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luzern"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Great Yarmouth"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bocharovskij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ブキャナン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴィシュコフ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nez Perce Reservation"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Königheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nemeggio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kenner"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ульяниха"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anabar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hashiware"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wangan"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zierikzee"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Brantian"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sarmiento"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMusicArrangers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Bradley_Joseph )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciechocinek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gokarna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "スコッツデール"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Brett Stegmaier comments after"@en }
    UNION
      { :Brett_Stegmaier_comments_after
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tlen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Feltre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chandler"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Klaipdos" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "pieno" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "kombinato" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "led³" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "cechas" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Bernardas" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Aleknaviius"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jackhead Harbour"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vyritsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:VocalionRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Harry_Reser )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasnyy Kamysh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lod"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rudayevka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ferndale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arlöv"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ショー・ロー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carrie"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valefjäll"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Helena"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:James_Southerland rdf:type ?x1 .
    dbpr:James_Southerland rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:James_Southerland
                  rdf:type  ?x1
      }
    UNION
      { dbpr:James_Southerland
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adrikha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gamil"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tovarné"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Retie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solna"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kendale Lakes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Polov'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ザルネシュティ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tulln"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Best" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Fairytales" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Vol"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tar River"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Landskrona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aguas Buenas"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Töcksfors"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tonki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gahanna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nolinsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT  ?y0
WHERE
  { ?x0  rdfs:label  "Database"@en ;
         rdf:type    ?y0
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanRockSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/John_Cooper_(musician)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abano Terme"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1912-03-08-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Smakovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernatka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:James_Beaumont_Neilson rdf:type ?x1 .
    dbpr:James_Beaumont_Neilson rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:James_Beaumont_Neilson
                  rdf:type  ?x1
      }
    UNION
      { dbpr:James_Beaumont_Neilson
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seval'nikha"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mesa"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "mėgėjiško dramos būrelio artistai po spektaklio kintuose"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "mėgėjiško dramos būrelio artistai po spektaklio kintuose"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Vilniaus" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "kapitulos" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "fondas" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Banytins" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "valdos" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Bistryia" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Vilniaus" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "vyskupo" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "sufragano" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "bylinjimasis" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "su" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "Bistryios" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "seninu" .
    ?person  foaf:name     ?name13 .
    ?name13  bif:contains  "Kristupu" .
    ?person  foaf:name     ?name14 .
    ?name14  bif:contains  "Radvila" .
    ?person  foaf:name     ?name15 .
    ?name15  bif:contains  "ir" .
    ?person  foaf:name     ?name16 .
    ?name16  bif:contains  "Bistryios" .
    ?person  foaf:name     ?name17 .
    ?name17  bif:contains  "dvaro" .
    ?person  foaf:name     ?name18 .
    ?name18  bif:contains  "valdytoju" .
    ?person  foaf:name     ?name19 .
    ?name19  bif:contains  "Baltazaru" .
    ?person  foaf:name     ?name20 .
    ?name20  bif:contains  "Janoviiumi" .
    ?person  foaf:name     ?name21 .
    ?name21  bif:contains  "ir" .
    ?person  foaf:name     ?name22 .
    ?name22  bif:contains  "Zofija" .
    ?person  foaf:name     ?name23 .
    ?name23  bif:contains  "Pavlovna" .
    ?person  foaf:name     ?name24 .
    ?name24  bif:contains  "Sapiegaite" .
    ?person  foaf:name     ?name25 .
    ?name25  bif:contains  "Stravinskiais" .
    ?person  foaf:name     ?name26 .
    ?name26  bif:contains  "dl" .
    ?person  foaf:name     ?name27 .
    ?name27  bif:contains  "Lazov¡inos" .
    ?person  foaf:name     ?name28 .
    ?name28  bif:contains  "vienkiemio" .
    ?person  foaf:name     ?name29 .
    ?name29  bif:contains  "Bistryios" .
    ?person  foaf:name     ?name30 .
    ?name30  bif:contains  "klebonijos" .
    ?person  foaf:name     ?name31 .
    ?name31  bif:contains  "valdos"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hermosa Beach"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cep"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Forshtadt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cabin City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rolasco"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanSoulMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Rufus_Thomas )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parwa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borgvik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suwon"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:CanadianRecordProducers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jane_Child )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lakeside"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bobo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ambleside"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Refugio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "太阳路"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waltham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asiago"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Traunreut"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baklanka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Maximiliano de la Croix"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Maximiliano de la Croix"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Feather Falls"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mogi das Cruzes"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kljoetsji"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Snicarte"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PeopleWhoEmigratedToEscapeNazism ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Georg_Solti )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yazykovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Limbach-Oberfrohna"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ostfildern"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Liechtenstein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wadgassen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sounoukana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishRockGuitarists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Brian_May )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "不莱梅"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Richmond"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Osnabrugge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strelka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dermbach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yelkhovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Möhlin"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zwenkau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Helmick"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Astor"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ketol"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "French Creek"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berkley"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Be'er Sheva"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balingstaby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бьерхе"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mimetiz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gartz (Oder)"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Iris"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pismo Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasnoselj"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borgloon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lyubechane"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sławatycze"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skiatook"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Granollers"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khairabad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT  ?subject
WHERE
  { ?subject  rdf:type              dbpo:Model ;
              dbpo:wikiPageRevisionID  ?o
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Гранд Прейри"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Agudela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Escuinapa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Viamão"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dce:  <http://purl.org/dc/elements/1.1/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?birthPlace ?birthDate ?description ?workplaces ?field ?museum
WHERE
  { ?person  dbpo:birthDate  ?birthDate
    OPTIONAL
      { ?person  dce:description  ?description }
    OPTIONAL
      { ?person  dbpo:birthPlace  ?birthPlace }
    OPTIONAL
      { ?person  dbpo:field  ?field }
    OPTIONAL
      { ?person  dbprop:workplaces  ?workplaces }
    OPTIONAL
      { ?museum  dbpo:type  :Museum ;
                 ?p         ?person
      }
    ?person  rdfs:label  ?name
    FILTER regex(?name, "Beijing Waldorf Astoria")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "圣维森特-德尔帕拉西奥"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lee's Summit"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dukun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Inger"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chillicothe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dasmariñas City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yekhe-Tsakir"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rogalin"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krutaya Gorka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Centennial"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Simon_Webbe rdf:type ?type .
    dbpr:Simon_Webbe ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Simon_Webbe
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arao"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Кастель-Сан-Джованни"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Razidlo pražských grošů"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Razidlo pražských grošů"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyan'sha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "New Sweden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Venturada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chiampo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kudagu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glendale Heights"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bocaiuva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ust’-Teter"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "West New York"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chengere"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyurvishchi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Çorlu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Immenreuth"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Park Forest"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mowbullan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zandvoort"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vestmo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sinsheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zirzow"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Etyek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ворошилино"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Setsetyo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cowell"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Johnny_Mercer rdf:type ?type .
    dbpr:Johnny_Mercer ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Johnny_Mercer
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khrustal'naya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abensberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tecate"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mirovice"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santillana del Mar"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Angali"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alquezar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Drøbak"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Timber Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Prihod" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "nem¡ke" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "vojske" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Celje"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belleville"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xin Township"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanRockGuitarists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Nels_Cline )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dinoga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reynoldsburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tak Fa"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aarau"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chmielnik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kaycee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chikwawa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lanús"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gardelegen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Benjamin Constant"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Treffendel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:LatinPopSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Carlos_Baute )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernysheva"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Llucmajor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yenagoa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Inglewood"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Renneborg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gornoural'skiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wielkopolskie"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanSoulSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Tammi_Terrell )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Нуэво-Касас-Грандес"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Trinitaria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kifinga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almansa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zeballos"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brück"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Leandro"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Masovian"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sao Tiago"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moÿ-de-l'Aisne"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Doral"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reșița"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Banda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanCountryGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Hank_Williams )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "福克斯通"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eskilstuna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:TorchSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Little_Annie )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vrataruša"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nuevo Laredo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciudad Waque"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サン・ピエトロ・ア・マイダ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Springhill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bonham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vakhnovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Romeoville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Osasco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Makati City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poselok"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Capilla de Los Remedios"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "オスカルーサ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Echávarri de Cuartango"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ud"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bezdan"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosarito"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hüttenreute"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bulgat-Irzau"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yeskino"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Luzia D Oeste"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Antigua"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bilthoven"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:GuggenheimFellows ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Charles_Mingus )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Васильевка"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sebastopol"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Olvan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Turichino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Ljubljana" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Palaa" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Grafika" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "glavna" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "fasada"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Саясан"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Commentaria" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "In" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Omnes" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Canonicas" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Apostolorum" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Epistolas" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Tertius"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St Leonards"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baklanka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roddey"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lidzbark Warmiński"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leinfelden-Echterdingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belaya Kalitva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reid"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wilga"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carpentersville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kayenta"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "嘉興"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bargen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "[David Richards Dafydd Ionawr print]"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "[David Richards Dafydd Ionawr print]"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deception Bay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lengerich"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Phủ Lý"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "South Padre Island"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Agua Caliente"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bühl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Moekden incident Japanse troepen veroverden Mantsjoerije zonder opdracht van de keizer Chinese krijgsgevangen worden met de strop ter dood gebracht Mantsjoerije"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Moekden incident Japanse troepen veroverden Mantsjoerije zonder opdracht van de keizer Chinese krijgsgevangen worden met de strop ter dood gebracht Mantsjoerije"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burlington"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernovskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ḩiyālī Qūyūq"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shenyang Shi"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "シウダデラ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eefde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PausaRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Bobby_Shew )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frazier Wells"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jastrzębie-Zdrój"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reytarovka"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "West Covina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Voronenka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jersey City"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kowtal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Durach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wollongong"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sual"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Afton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St. Georges"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Úbeda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vougy"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sosnovskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maku"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ivrea"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pachuca de Soto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Banga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bilcheragh"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cristelo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Achern"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sabie Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oregrund"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vila Nova de Paiva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1886-01-01;end=1886-01-01;-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AtlanticRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jason_Mraz )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bergosa"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hayward"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dolores"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "勒诺"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brighton"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atkinson"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hihya"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Коздинга"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hann. Münden"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Immokalee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hardegsen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Navsari"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:SwingComposers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Don_Redman )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chenjiabu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ean Albasha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sha Pa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grobbendonck"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { { {   { ?uri  ?q1  dbpr:Vienna }
        UNION
          { dbpr:Vienna  ?p1  ?uri }
      }
      { ?uri  rdf:type  dby:People107942152 }
    }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heusweiler"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "fantastic"@en }
    UNION
      { :fantastic  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Stevan Simić"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Stevan Simić"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bukit Bakri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Surprise"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("start=1947-01-01;end=1966-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brewster"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Richland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oxnard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "DrÃmmejobben" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Nyonkos" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "fortelling"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "巴特洪堡"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:SiblingMusicalDuos ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:RyanDan )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gauriac"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moosburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "タコマ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eisenach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sunndal Kommune"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cherán"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?player  rdf:type              dbpo:SoccerPlayer ;
             <http://dbpedia.org/ontology/Person/height>  "186" ;
             dbpo:position         ?position ;
             rdfs:label            "PLACE OF BIRTH"
  }
LIMIT   20
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Isanti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aksaur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perafita"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bamfield"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rovigo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chingil'tuj"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suzgar'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plattling"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vlotho"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?p
WHERE
  { ?p  rdf:type  dbpo:Film
      { ?p  dbpo:starring  dbpr:Woody_Allen }
    UNION
      { ?p  dbpo:director  dbpr:Woody_Allen }
    UNION
      { ?p  dbpo:author  dbpr:Woody_Allen }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meinerzhagen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huitzuco de los Figueroa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Critical Arts Compilation"@en }
    UNION
      { :Critical_Arts_Compilation
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nittedal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Сикертан"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rojales"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Golyshmanovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pruna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Halsbrücke"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Qapshaghay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zakamiensk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perazancas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koirinoya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/MusiciansFromPittsburgh,Pennsylvania> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Wayne_Coyne )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:FemalePunkRockSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jessicka )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwyz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Steps Forward 1 Step"@en }
    UNION
      { :Steps_Forward_1_Step
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nakhodka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torre-Pacheco"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Smålandsstenar"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Telyavkino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Six-Fours-les-Plages"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "セー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sunduki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strombeek-Bever"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Cruz de Tenerife"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balanod"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khadzhalmakhi"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "エドワーズバーグ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al-Dżahra"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Careiro da Várzea"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "カタマルカ州"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adegas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sheering"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cleburne"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Komsomol'skoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soto del Real"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "gruppe dønnem"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "gruppe dønnem"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPoets ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Courtney_Love )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bardoli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ponyri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prachatice"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Otradino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?pageId ?coverFilename
WHERE
  { ?subject  dbpo:wikiPageID  ?pageId ;
              dbprop:name      ?name ;
              rdfs:label       ?label
      { ?subject  dbprop:artist  ?artist }
    UNION
      { ?subject  dbpo:artist  ?artist }
      { ?artist  foaf:name  "Kraftwerk"@en }
    UNION
      { ?artist  dbprop:name  "Kraftwerk"@en }
    ?subject  rdf:type      dbpo:Album ;
              dbprop:cover  ?coverFilename
    FILTER regex(?name, "Kraftwerk 2", "i")
  }
LIMIT   1
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AfricanAmericanRappers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Akon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "de l’entropie à la résistance la rythmique du vivant"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "de l’entropie à la résistance la rythmique du vivant"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gettysburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:EnglishSongwriters ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jake_Thackray )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dissen am Teutoburger Wald"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "B."@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pyatnikha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Highlands Ranch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oranienburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolatsel'ga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yayva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Duce"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "マカハ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meshokol'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Doti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aukkolevo"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Merenvielle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:Soft_Cell
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:Boogie-woogiePianists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Vince_Weber )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Atorius" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Duchawnas" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "arba" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "afierawone"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Murg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tavas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Унь"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hildesheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haßmersheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atlanta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bimbimbie"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Centro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aquiles Serdan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasnogorsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fannie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Taraksa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arkhipovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberhonnefeld-Gierend"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tsu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seich"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cadet"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Christopher_Willits )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dyaglevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "パンナ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Clarita"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kurchatov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wegry"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stoyantsj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salina Cruz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wiehl"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ウェストバレーシティ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heard Island and McDonald Islands"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("средата-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jose Maria Morelos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Gregorio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nordhausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ゴールドビーチ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Рогачиха"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ashchimuryn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aversa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kamyshlj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klawock"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Дейли Сити"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Askulj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quins"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klågerup"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Camarillo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:FrenchFilmScoreComposers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Michel_Magne )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ариель"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Titagarh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tangstedt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Berka"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Préfecture autonome tibétaine de Dêqên"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Penthéréaz"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lefortovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyabutj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Henley-on-Thames"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boadilla del Monte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciudad de México"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Goodyear"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "国立"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tustin"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torremolinos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pearl"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Minya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Forby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huaraz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elizabeth"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhestki"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zalustezh'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lobo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Overland Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Frisa"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бодега-Бэй"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amboise"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lake Providence"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kresttsy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pitkul'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aradan"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Putzu Idu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanPeopleOfCroatianDescent ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Plavka )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hyner"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fort-Liberté"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Andratx"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:Blue-eyedSoulSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Fergie_(singer)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ボコフスカヤ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rubano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mysłowice"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Newark"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kirovohrad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Used"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suchki-Kondrashi"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arbela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тимкино"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Velten"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leonard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El'brus"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eagle River"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Scruengo"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Murnau am Staffelsee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "1974-08-29-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kirchentellinsfurt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { <http://dbpedia.org/resource/3_(American_band)>
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanJazzBandleaders ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Billy_Eckstine )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ribadesella"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zeilarn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luke"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Turangi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chemainus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caño"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yastrebikha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guffey"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:CanadianFemaleSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jane_Child )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Klaipdos" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "pieno" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "kombinate" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "Bernardas" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Aleknaviius" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "XI"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Langensalza"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Habikino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cone"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Raeren"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vetreno-Teleutskoye"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anuchinskij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Esperanza"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT  ?y0
WHERE
  { ?x0  rdfs:label  "Human settlement"@en ;
         rdf:type    ?y0
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:ProfileRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Special_Ed )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chateau-Richer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chagarotar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Andenne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Peachland"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Duńkowice"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khlebanikha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:OperaticBaritones ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Tito_Gobbi )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tersinka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Möglingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dinklage"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Cocha"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Llantwit Major"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanSongwriters ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Richard_A._Whiting )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sege"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Betpouey"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Sidney_Martin rdf:type ?x1 .
    dbpr:Sidney_Martin rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Sidney_Martin
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Sidney_Martin
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Portrett Bindalen"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Portrett Bindalen"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1960-01-01;end=1985-12-31-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Río Communities"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Doongul"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mima"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishJazzDrummers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Tony_Oxley )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1914-01-01;end=1914-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "モルシャンカ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Lyder Kvantoland"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Lyder Kvantoland"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yeni Pazar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yingtan"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Midnapore"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?brand ?os ?cpu ?frontCamera ?rearCamera ?memory
WHERE
  { ?x  rdf:type     :Smartphone ;
        dbprop:name  ?name
    OPTIONAL
      { ?x  dbprop:brand  ?brand }
    OPTIONAL
      { ?x  dbprop:os  ?os }
    OPTIONAL
      { ?x  dbprop:cpu  ?cpu }
    OPTIONAL
      { ?x  dbprop:frontCamera  ?frontCamera }
    OPTIONAL
      { ?x  dbprop:rearCamera  ?rearCamera }
    OPTIONAL
      { ?x  dbprop:memory  ?memory }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Inubia Paulista"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhangxian"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marathon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Phichit"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Трайри"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Siegen"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suizhou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Covina"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Svedala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "イス"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Isola Sacra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:CommandersOfTheOrderOfTheBritishEmpire ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:John_Lill )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kellogg"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deyang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Lepromatous" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "leprosy" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "histoid" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "leprosy"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Стеклянная Радица"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pohtola"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kinta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Datteln"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusiciansFromOhio ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Harry_Reser )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sengkang"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yesipovskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/RappersFromAtlanta,Georgia> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:YoungBloodZ )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Diogenész" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "eldobja" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "csészéjét"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberhonnefeld-Gierend"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ランシャリア"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:PeopleWhoEmigratedToEscapeNazism ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Darius_Milhaud )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "アクロン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yunfu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Esterwegen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Planaltina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yeryutino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trescasas"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Change Islands"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lampedusa e Linosa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Highwood"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weymouth"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diamondhead"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Worms"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Constanța"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kotorsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mechanicsville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanHipHopRecordProducers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Akon )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brabrand"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Snezhnogorsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shaoxing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wetter"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Clorinda"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Terebivlya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fosston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Уэсткорт"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Redwood Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amerikanisch-Samoa"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Degerby"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kidugallo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atargan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サンマテオ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ahome"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "トロスチャニ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hoofddorp"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kirkwood"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pojoaque"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "プロボ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "César"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stanbridge Station"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusiciansFromVancouver ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Dan_Mangan )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zamajon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kipelovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Iaçu"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Azovs'ke"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Kishoreganj ?p1 ?x2 .
    dbpr:Kishoreganj ?p4 ?x3 .
    ?x3 rdf:type ?x5 .
    dbpr:Kishoreganj ?p7 ?x6 .
    ?x6 rdfs:label ?x8 .
  }
WHERE
  {   { dbpr:Kishoreganj
                  ?p1  ?x2
      }
    UNION
      { { dbpr:Kishoreganj
                    ?p4       ?x3 .
          ?x3       rdf:type  ?x5
        }
      }
    UNION
      { { dbpr:Kishoreganj
                    ?p7         ?x6 .
          ?x6       rdfs:label  ?x8
        }
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { <http://dbpedia.org/resource/Plainsong_(band)>
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alabaster"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Paarse" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "kazuifel" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "en" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "stola"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Petah Tikva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mäland"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dorno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ao Luk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Москва"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tücking"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Williamsport"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mesa del Nayar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "コーナ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sisters"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nagasaki Prefecture"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tainan City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gundelsheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zaysan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saltum"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hajir"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?populationDemonym ?person ?museum ?building
WHERE
  { ?place  rdf:type    onto:Place ;
            rdfs:label  ?name
    OPTIONAL
      { ?place  onto:country  ?country }
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    OPTIONAL
      { ?place  dbprop:populationDemonym  ?populationDemonym }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Chicago")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oldrag"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "pantograf przyrząd do mechanicznego przerysowywania rysunków"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "pantograf przyrząd do mechanicznego przerysowywania rysunków"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orihuela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyrnau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buntharik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tyner"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nokia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "棕榈泉"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuhofen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buckeye, Arizona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orsted"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bibiana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Guimarey"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beikan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bazhai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maynal"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hermannsburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obertshausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Byval'skaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pößneck"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Clifton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "烏斯秋日納"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Remo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yugantovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albaba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fox Lake"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Keul'"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Glendale"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Akersloot"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stadtteil Sülz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:NewSouthWalesMusicalGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:The_Screaming_Jets )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ラインベルク"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beringstedt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:BlueNoteRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Candido_Camero )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dongguan"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Захарята"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ripon"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prettin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Myakinchino"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Chaulme"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gorchukha"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Theunissen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grass Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winnebago"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kursk Oblast"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Essey-lès-Nancy"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schenectady"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Lode Sengers "@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Lode Sengers "@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burghead"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moosbach bei Mauerkirchen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Руст"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cavallino - Formica"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nurtej"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Acireale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pemuco"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koshkarbay"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "دندير"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kadnikha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brusovets"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "布尔斯"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:GermanExpatriatesInSweden ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Kurt_Tucholsky )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Murat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Partido di San Fernando"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lochut"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tungusj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tulancingo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Going Forward GS"@en }
    UNION
      { :Going_Forward_GS
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pagantenan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Badalona"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ciego de Ávila"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Molo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chasm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Woodmoor"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sudbury"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schoonrewoerd"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Victoria Falls"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:LivingPeople ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Johnny_Rivers )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Magdalena Tetela"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bydel Slovner"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khotovan'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "is suspended at"@en }
    UNION
      { :is_suspended_at
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kitchener"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:NerdcoreHipHopArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:MC_Frontalot )
  }
LIMIT   100
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "night football"@en }
    UNION
      { :night_football
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cortez"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tecuci"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gryada"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "South Grafton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rethimno"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Legnano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1803-01-01") ) && ( ?date < xsd:date("1804-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Dokument o potrditvi pekovskega ceha"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Dokument o potrditvi pekovskega ceha"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naji"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "The" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Tipsy" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Elk"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Табулдак"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nerussa"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:TimelessRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Chris_Barber )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karakudyur"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hessisch Oldendorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wrightwood"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "阜新蒙古族自治县大板镇人民政府"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Newmarket"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ricardone"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khoroshevskij"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lagoa"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Miajadas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  url:  <http://schema.org/>

SELECT  (COUNT(?p))
WHERE
  { ?s  ?p  ?o
    FILTER ( ?s = ?film )
    { SELECT  ?film
      WHERE
        { ?film  rdf:type  url:Movie }
      GROUP BY ?film
      LIMIT   10
    }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atarfe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Birch Creek"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sella"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kutanaul"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hafara"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Creglingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vendrennes"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "彼得罗波利斯"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ナンテール"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Westport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ober-Olm"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Insect life by C A Ealand M A with full page illustrations being from photographs by the author and in colour from nature"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Insect life by C A Ealand M A with full page illustrations being from photographs by the author and in colour from nature"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "圣若泽多斯坎波斯"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obhausen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mainz"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krasnogorskij"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Currimundi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seeheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khaydak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almunecar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Escós"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dudley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nead"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuching"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Summerfield"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zoetermeer"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "テレル"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Askainen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klöch"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Sluiting mijnen Limburg Staatsmijn Emma"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Sluiting mijnen Limburg Staatsmijn Emma"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Romany"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanTechnoMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Donald_Glaude )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Ann" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Monica" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Bueklev"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skopin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manilva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lauffen am Neckar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cannelton"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Corona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Любовшо"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PostmodernWriters ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Ken_Kesey )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "リスベルク"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Long Tikan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "1925-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bulan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Iizuka"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ワサ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Escobedo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanRockViolinists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Emilie_Autumn )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:GrungeMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Chad_Kroeger )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ケリー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Templestowe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sayanskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arcadia"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tilburg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Beauty_Pill rdf:type ?type .
    dbpr:Beauty_Pill ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Beauty_Pill
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Espoo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Acu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bullville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kos-Kopa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/CokeStudio(Pakistan)Artists> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Sajjad_Ali )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bevtoft"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Osterburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krestyanivka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "City of Bay City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тимохино"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Delligsen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lady Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cras"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balkı"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wilkinsburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karkku"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ropesville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hechthausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolosar'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ballabio"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Longview"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ngabeyan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Порт Элис"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "E9"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Contres"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ナンテール"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Giachea"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cherkekh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uijeongbu"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "São Gonçalo"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Holum"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jandun"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jhijhaniyali"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wairau Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sempadian"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:WorldMusicMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Harry_Belafonte )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Muswellbrook"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tal'tsj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coney"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Água Doce"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zujar"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hawsh Isa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tinicum Township"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wola Nieszkowska"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Толстяки"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jaumave"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Khokhloma"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bol'shansk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arizona City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanPopSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Gloria_Gaynor )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Almont"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Nederlandse" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Kampioenschappen" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Biljarten" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "ankerkader" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "in" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Zwolle" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Piet" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "Vet" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "links" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "in" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "gesprek" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "met" .
    ?person  foaf:name     ?name12 .
    ?name12  bif:contains  "Havermans"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Greggered"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mission Viejo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buchholz in der Nordheide"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cooke City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balboa"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Braintree"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Atlantis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Motala"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "لحلاحلة"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolliváta"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?series
WHERE
  { ?series  rdf:type          dbpo:TelevisionShow ;
             dbpo:releaseDate  ?date
    OPTIONAL
      { ?series  dbpo:genre  ?genre }
    FILTER ( xsd:date(?date) >= "2016-01-01"^^xsd:date )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bellaire"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Raditsj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cassino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Trivier-sur-Moignans"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novokhovrino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernyy Mys"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berkeley"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bolobo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Celaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("-0580-01-01-01-01") ) && ( ?date < xsd:date("-579-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chemuraj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Adi Kwala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanFemaleSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Shelby_Flint )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sovkhoznyj"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abreu e Lima"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novokuznetsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pointe-Fortune"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1803-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St. Paul"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dipayal Silgadhi"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sesto Fiorentino"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Stacey_Q rdf:type ?type .
    dbpr:Stacey_Q ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Stacey_Q
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "斯托克布里奇"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Titchikha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barovo"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zamora de Hidalgo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baldwin City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mohave Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Innolovo"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Windham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sabero"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mszczyczyn"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Palmira"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Barbacha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromBrooklyn ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Pat_Benatar )
  }
LIMIT   100
"
"PREFIX  dt:   <http://dbpedia.org/datatype/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?movies ?budget
FROM dbpr:Woody_Allen
WHERE
  { ?movies (dbpo:writer|dbpo:director)|dbpo:starring dbpr:Woody_Allen .
    ?movies  dbpo:gross   ?gross ;
             dbpo:budget  ?budget
    FILTER ( ?budget > "5000000"^^xsd:double )
    FILTER ( ?budget > "5000000"^^dt:usDollar )
  }
ORDER BY ?gross
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ラルズ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rystsevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bîrlad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "V'yunskij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ñuñoa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Demidovo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Richland Hills"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Margahayu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manhattan Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Peter" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Zeichner" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "Deckers"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oceanport"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moosburg an der Isar"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lac Flink"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Flaxville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:Nasum  dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Qunaytirah"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reading"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gambrills"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caucel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Artemovsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schrozberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meneses"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanFilmActors ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jackie_Curtis )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deep Springs"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:TaiwaneseMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:David_Tao )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rushmorefjellet"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seropédica"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boulogne-Billancourt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Comté de McCulloch"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Campurdarat"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sha Tau Kok"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sendenhorst"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mosbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:WilliamsCollegeAlumni ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Adam_Schlesinger )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тхарино"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Las Arenas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "岡山区"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("1748-01-01") ) && ( ?date < xsd:date("1749-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hay South"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bonnieux"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sugar Grove"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Erba"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mûrs-Erigné"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bicesse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sveretovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kasauli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sao Luis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "フェアマウント"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parla"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Veghel"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Bay Village"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santiago de Chile"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kufstein"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aguadulce"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cuddy"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ermelo"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Insel Poel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zasheven'ye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vila Moura"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abū Şulāl"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Джеймспорт"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dno"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "White Hills"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lautzenhausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Dorice" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Restaurant"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Godvik"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saitama"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Itaboraí"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:BarryUniversityAlumni ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Flo_Rida )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bodega"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Felanitx"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanHouseMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Donald_Glaude )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusiciansFromVirginia ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jake_E._Lee )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verulam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Decker"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Freeport"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jesup"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Helsingfors"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castroville"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matthews"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buskri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rodkaersbro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Irvine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Burton"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Sean_Kingston )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novopetrovskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Auchterarder"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altenau"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Miguel Coatlinchan"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beauville"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gotra"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Warth"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Minatitlán"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "Începutul-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aeropuerto de Lelystad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Framingham"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bakau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Puqueldón"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kingsley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wittlingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Massy"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Balayan"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cavinti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "バラボリハ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brigham City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lesing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:Soul-jazzTrumpeters ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Freddie_Hubbard )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pekalongan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kudo-gun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mérida"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hughes"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cotter"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Schwalbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "エカテペッ モレロス"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "シャペル=ヴォラン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zuhatzu Kuartango"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Portrush"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?altName ?x ?photo ?abstract ?foundedYear ?founded ?industry ?founder ?founder2 ?important ?important2 ?city ?country ?connected ?connectedCompanies ?parentOrg
WHERE
  {   { ?altName  rdfs:label            "Koch Industries"@en ;
                  dbpo:wikiPageRedirects  ?x
      }
    UNION
      { ?x  rdfs:label  "Koch Industries"@en }
    ?x  rdf:type  dbpo:Company
    OPTIONAL
      { ?x  dbpo:thumbnail  ?photo }
    ?x  dbpo:abstract  ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    OPTIONAL
      { ?x  dbprop:founder  ?founder }
    OPTIONAL
      { ?x  dbpo:foundedBy  ?founder2 }
    OPTIONAL
      { ?x  dbpo:keyPerson  ?important }
    OPTIONAL
      { ?x  dbprop:keyPeople  ?important2 }
    OPTIONAL
      { ?x  dbprop:locationCity  ?city }
    OPTIONAL
      { ?x  dbprop:locationCountry  ?country }
    OPTIONAL
      { ?x  dbprop:parent  ?connected }
    OPTIONAL
      { ?x  dbprop:parentOrganization  ?connectedCompanies2 }
    OPTIONAL
      { ?x  dbpo:subsidiary  ?parentOrg }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zagarskaya"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Epic"@en }
    UNION
      { :Epic  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Indian Lake"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosharon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nordkirchen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dengdun"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Udol'ye"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Feijo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Domoslavl'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belovshchina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oksbol"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "菲尔丁"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Segou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kalinovka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roman Catholic Diocese of Novo Hamburgo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Petra"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Barbara"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPianists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jennifer_Terran )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Port Perry"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yea"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paso del Rey"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boerne"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Welcome To The Store"@en }
    UNION
      { :Welcome_To_The_Store
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "弗希塔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "モジ・ダス・クルーゼス"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gridley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberreute"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mayorka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Szewa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abharada"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  p:    <http://dbpedia.org/property/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?player  rdf:type    dbpo:SoccerPlayer ;
             rdfs:label  ?label
    FILTER regex(str(?label), "Thomas Müller", "i")
    ?player  p:nationalteam  ?NationalTeam ;
             p:placeOfBirth  ?placeOfBirth
  }
LIMIT   20
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Horb am Neckar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ludwigsburg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "is suspended"@en }
    UNION
      { :is_suspended
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Watertoren" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "en" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "koeltorens" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "van" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "Staatsmijn" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Emma" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Hoensbroek"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shuksha"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xinzhangfang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhamansarj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Srihatti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hockenheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "L'Escurial"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Immenstadt"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tulichevo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "[Publii Vergilii Maronis Opera]"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "[Publii Vergilii Maronis Opera]"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ゼイラ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eluru"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Clara"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bom Sucesso"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ust'-Dzhilinda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Horadada"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:John_Petrucci )
  }
LIMIT   100
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  {   { ?altName  rdfs:label            "GlobalLogic"@en ;
                  dbpo:wikiPageRedirects  ?x
      }
    UNION
      { ?x  rdfs:label  "GlobalLogic"@en }
    ?x  rdf:type        dbpo:Company ;
        dbpo:thumbnail  ?photo ;
        dbpo:abstract   ?abstract
    OPTIONAL
      { ?x  dbpo:foundingYear  ?foundedYear }
    OPTIONAL
      { ?x  dbpo:foundingDate  ?founded }
    OPTIONAL
      { ?x  dbprop:industry  ?industry }
    FILTER langMatches(lang(?abstract), "EN")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wennigsen (Deister)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pabalam"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gartree"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Riva del Garda"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Troutbeck"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnglishMaleSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Simon_Webbe )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Semendua"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maricá"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Las Juntas de Canelas"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanDanceMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Plavka )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abreu e Lima"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moorooka"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meudon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nemirov"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanSoulMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jeffrey_Osborne )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maskell"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Miguel Topilejo"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vevey"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "舒门"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winterset"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?person ?museum ?building
WHERE
  { ?place   rdf:type          onto:Place ;
             rdfs:label        ?name .
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    OPTIONAL
      { ?place  onto:country  ?country }
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Valladolid")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Orlando"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Albuquerque"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berkeley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baranskaya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yagdyn'ya"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "グレンミルズ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dalton Gardens"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aizumisato"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "摄布"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pakawau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sint-Pieters-Leeuw"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pramagnon"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Luegde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vima"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanPunkRockSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Glenn_Danzig )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kerttuv”ya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:EnjaRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Hal_Galper )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMusiciansOfSlovakDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jim_Peterik )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "リゴー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gustavo A. Madero"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xilin Gol"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?body ?magnitude
WHERE
  { ?body  rdf:type        dbpo:CelestialBody ;
           dbprop:appmagV  ?magnitude
    FILTER ( ?magnitude < 6 )
  }
ORDER BY ?magnitude
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Siberut Utara"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "The Woodlands"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Зверинец"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   <http://dbpedia.org/class/yago/MusicalGroupsFromOrangeCounty,California> ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:The_Offspring )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "太平"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bet Yehoshua"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strubno"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Labukt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blaen-Y-Maes"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thetford Mines"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernyakhovo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Napa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vestmo"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Casares"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hässleholm"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Molledo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Martinsburg"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "欧奈苏布瓦"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vorot-Ongoj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/Pavement_(band)> rdf:type ?type .
    <http://dbpedia.org/resource/Pavement_(band)> ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { <http://dbpedia.org/resource/Pavement_(band)>
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ogomana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?auri ?aname ?puri ?pname
WHERE
  { dbpr:The_Surfaris
              dbpo:hometown  ?puri .
    ?auri     dbpo:hometown  ?puri ;
              rdf:type       ?type ;
              foaf:name      ?aname .
    ?puri     rdfs:label     ?pname
    FILTER ( lang(?pname) = "en" )
    FILTER regex(str(?type), "music", "i")
    FILTER ( ?puri != dbpr:United_States )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Miyaneh"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bonnelles"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Aashiri Ghali"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Aashiri Ghali"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dittmer"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Woodbridge"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Case-Pilote"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Telok Panglima Garang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bnei Berak"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naours"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "pred útokom"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "pred útokom"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wall Lake"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mülheim an der Ruhr"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanGrindcoreMusicalGroups ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Dropdead )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Randogne"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bay Shore"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Star. Sloboda"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "克罗托申"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waldron"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Święte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ul'diga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Noida"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kolaki-Wietrzychowo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "holes 79 foot eagle"@en }
    UNION
      { :holes_79_foot_eagle
                  dbpo:wikiPageRedirects  ?x
      }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tübingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maria-Lanzendorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "コマース"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              <http://dbpedia.org/class/yago/MusicalGroupsFromLosAngeles,California> ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:The_Surfaris )
  }
LIMIT   100
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:GrooveRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Charlie_Rich )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cushing"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anabar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Medaillen"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Medaillen"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "マケーナ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moddergat"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Малибу"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Strzelino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Enhörna"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kulubi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "manantial"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "manantial"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Los Lunas"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morning Bay"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ballerup"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pozhars'ke"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuhaus"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tampere"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Magdalena Tetela Morelos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Madinah"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:RCARecordsNashvilleArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Jake_Owen )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosdorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sanatoriya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kapur Sembilan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altayskoye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manawatu-Distrikt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haedo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bassano del Grappa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bol'shoy Nimnyr"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crestuma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dillsboro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PeopleFromGeneva ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Vico_Torriani )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bixby"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kaarst"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yevul"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bromma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yenagoa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Benjamin Aceval"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chiguayante"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Rothenfelde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Götzis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "sulby hall around original image refmh"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "sulby hall around original image refmh"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMusiciansOfFilipinoDescent ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:DJ_Babu )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Ana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Benneckenstein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Grossenbrode"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Büchlberg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bulen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deering"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヴァレンサ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dengjiabu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rayville"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Горюн"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>

CONSTRUCT 
  { 
    <http://vfringe.totl.net/2015/2015/piano-music-etc-etc-st-catherines-church-2015-08-15T19:30> ?p1 ?x2 .
    <http://vfringe.totl.net/2015/2015/piano-music-etc-etc-st-catherines-church-2015-08-15T19:30> ?p4 ?x3 .
    ?x3 rdf:type ?x5 .
    <http://vfringe.totl.net/2015/2015/piano-music-etc-etc-st-catherines-church-2015-08-15T19:30> ?p7 ?x6 .
    ?x6 rdfs:label ?x8 .
  }
WHERE
  {   { <http://vfringe.totl.net/2015/2015/piano-music-etc-etc-st-catherines-church-2015-08-15T19:30>
                  ?p1  ?x2
      }
    UNION
      { { <http://vfringe.totl.net/2015/2015/piano-music-etc-etc-st-catherines-church-2015-08-15T19:30>
                    ?p4       ?x3 .
          ?x3       rdf:type  ?x5
        }
      }
    UNION
      { { <http://vfringe.totl.net/2015/2015/piano-music-etc-etc-st-catherines-church-2015-08-15T19:30>
                    ?p7         ?x6 .
          ?x6       rdfs:label  ?x8
        }
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lodelinsart"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1945-06-01;end=1945-06-30-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tapley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bryumbel'"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diors"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kebonsari"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Donaueschingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alfalfa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boryspil"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Devarakonda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hico"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ミワウト"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Hubert"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wittlingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valukhi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ホックレイ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St. Georgen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sivakasi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuenstadt am Kocher"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Poppel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beriozowskij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ginduliai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Flint Creek"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ボリショイ・ルツク"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rosoy"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Constantina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Unterhaching"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Vicente"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Denair"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Batavia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lago Epecuen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cheny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sorters"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rudersberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:FrenchHipHopMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:DJ_Cam )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "新安镇"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leninogor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morkatj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bukit Bakri"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuoray-Umusakh"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "The Woodlands"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wathena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "バニ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sint Willebrord"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canyon Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Whittier"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cloverleaf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bunny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ängelholm"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Smithville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "IngólfsstrÃti"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Suopohja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Iranduba"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "クムル地区"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bystritsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Markt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fischbach bei Dahn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Highland Home"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leningrad Oblast"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Le Gosier"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ølen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crystal Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sejon Dr"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bilibino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:LGBT-themedMusicalGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Soft_Cell )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Slagelse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ла Мотт"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Avellino"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ly"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:FinnishSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Jenni_Vartiainen )
  }
LIMIT   100
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/Davenport,_Iowa> rdf:type ?x1 .
    <http://dbpedia.org/resource/Davenport,_Iowa> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/Davenport,_Iowa>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/Davenport,_Iowa>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Stephen_Kellogg_and_the_Sixers rdf:type ?type .
    dbpr:Stephen_Kellogg_and_the_Sixers ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Stephen_Kellogg_and_the_Sixers
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mauá"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deggendorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wrathall"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oconto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  *
WHERE
  { { {   { ?uri  ?q1  dbpr:Europe }
        UNION
          { dbpr:Europe  ?p1  ?uri }
      }
      { ?uri  rdf:type  dbpo:Capital }
    }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brunswick"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Граница"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "oppsats"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "oppsats"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cameron"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teresópolis"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lipnica Donja"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "simavika kraftstasjon"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "simavika kraftstasjon"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Erdaohezi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "Wave"@en }
    UNION
      { :Wave  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Eppingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Contea di Box Butte"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cheshunt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oro Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wardha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:James_Newton rdf:type ?type .
    dbpr:James_Newton ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:James_Newton
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Algebuckina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:DutchHeavyMetalGuitarists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Eddie_Van_Halen )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vlodrop"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vysotskiye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Griesbach im Rottal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Ancon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haverdal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sonoma County"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oslo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meerbusch"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тетеревни"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paternò"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?movieName ?abstract ?genre ?releaseDate
WHERE
  { ?film  rdf:type       dbpo:Film ;
           rdfs:label     ?movieName ;
           dbpo:abstract  ?abstract ;
           dbprop:genre   ?genre ;
           dbprop:date    ?releaseDate
    FILTER ( lang(?movieName) = "en" )
    FILTER ( lang(?abstract) = "en" )
    FILTER ( ?releaseDate > "2015"^^xsd:dateTime )
  }
ORDER BY DESC(?releaseDate)
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oxenford"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Isidro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sabancuy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Syracuse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reedsburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yarkino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberndorf am Neckar"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanBluesMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Yank_Rachell )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skultuna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Klagenfurt am Wörthersee"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nowy Probark"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sjælland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ermelo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Penco"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:DJ_Babu rdf:type ?type .
    dbpr:DJ_Babu ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:DJ_Babu  rdf:type  ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sankt Englmar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lingostrov"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hawk Inlet"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pemuteran"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Beni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Meitingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naberezhnyye Chelny"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gilching"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trunak"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kohka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bom Retiro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "トゥチコヴォ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pertheville-Ners"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kinterep"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blaine"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Brother"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ankadiya"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Krozingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "レイノサ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Capão Bonito"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jiboia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Primkoking"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Primkoking"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Кушуки"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bestwig"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Samut Sakhon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:DutchHeavyMetalSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Charlotte_Wessels )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sierre"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Mahattah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanMusicalTheatreComposers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:George_Bassman )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa Cruz do Sul"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sel'mentauzen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ute"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bijelo Polje"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ragland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Auzat"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alken"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Masuda"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ceska Lipa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zwolle"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koterevo"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:YagoPermanentlyLocatedEntity ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Rhythm_Heritage )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kampong Guroh Guroh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wien"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anitsaion"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Iskanderiyeh"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Szklarska Poręba"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Loop"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mikhaylo-Pavlovsk"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Президенти-Медиси"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Milano"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krokstadelva"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morayra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サン・ピエトロ A マイダ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kadoma"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:LGBTMusiciansFromTheUnitedStates ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Cecil_Taylor )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pomona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Talala"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ostfriesland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Acayucan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paulista"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "MÃlebeger" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "dl"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bartula"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Diveyevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Conesa"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ガルゴン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sukabumi"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Miltenberg"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Konchezero"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winston"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Guinoux"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quy Mill"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Romodanovo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stramproy"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coweta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krestyanivka"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Américo Brasiliense"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lapai"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sandusky"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1956-09-29;end=1956-09-29-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Сиджил София"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Сиджил София"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:PrestigeRecordsArtists ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Red_Holloway )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waipahu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "罗伊特林根"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Corby"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Redbush"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sheikhpura"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Farias Brito"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Altenau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "坎贝尔"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "レイヴンズウッド"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Garmisch-Partenkirchen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bukarevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anglards-de-Salers"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Charnakhia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tiger Lily"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Trivier-sur-Moignans"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "mihael vošnjak"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "mihael vošnjak"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kaatsheuvel"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karasjok"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alliance"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "陵城镇"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karez"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krusha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novokuznetsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Habarane"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Вилья Линч"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Deseado"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pestryakovo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ichtegem"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Medicina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hermsdorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weilheim in Oberbayern"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yea"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "kirkheaton church afc crowther aspinall goalkeeper behind vicar"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "kirkheaton church afc crowther aspinall goalkeeper behind vicar"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "泉崎村"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Arnstadt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kihei"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Odunec"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nufringen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Menomonee Falls"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kosha"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Speicher"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Algasj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canby"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hawar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obertshausen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Milas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ribota"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dongguan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Veauche"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villanueva de Las Torres"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Labastida"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Topa Mică"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Basiano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villafranca del Panadés"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ウタル"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valdosta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Herblay"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Pocatiere"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sanok"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Laporte"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Briereville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pottenstein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ratingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Uonuma"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vinding"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soyen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jete"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tarulinna"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rąbkowa"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Costa"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jombang Regency"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "松戸"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tulsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teplaya Gora"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "İmamoğlu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "雷斯"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Miles"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Te Anau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Walnut"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fossa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kourou Monastiri"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Bryn_Christopher rdf:type ?type .
    dbpr:Bryn_Christopher ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { dbpr:Bryn_Christopher
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "El Progreso"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Minde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:MusicalCollectives ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Lansing-Dreiden )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wilsonville"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stockbridge"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Herr Professor Schleicher in Jena und die Urverwandtschaft der semitischen und indoeuropäischen Sprachen Ein krit Bedenken"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Herr Professor Schleicher in Jena und die Urverwandtschaft der semitischen und indoeuropäischen Sprachen Ein krit Bedenken"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Upyti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tausengir"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kichmengsko-Gorodetskiy Raion"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coirós"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Victoriaville"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:MusicalGroupsEstablishedIn1969 ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Osibisa )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lumbushi"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moosbach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ferrisburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jarudore"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Шомпа"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Solano"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Escondido"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Esquel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Florissante"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tuguluj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rissani"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Otradnaja"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?uri
WHERE
  { { ?uri  rdf:type  dbpo:Country
        { ?uri  ?p  dbpr:West_African_CFA_franc }
      UNION
        { dbpr:West_African_CFA_franc
                    ?q  ?uri
        }
    }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "South Boston"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "プラセタス"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ibarra"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Work
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
      { ?dbpedia  dbpo:startDate  ?date }
    UNION
      { ?dbpedia  dbpo:releaseDate  ?date }
    FILTER ( ( ?date > xsd:date("края-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bradenton"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shatsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тинахерос"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santu Lussurgiu"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:UrbanBluesMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Albert_King )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jamestown"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Appenzell"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tremetusia"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kodieran"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?name ?type
WHERE
  {   { ?x  rdfs:label  "BACK ETC"@en }
    UNION
      { :BACK_ETC  dbpo:wikiPageRedirects  ?x }
    ?x  rdfs:label  ?name ;
        rdf:type    ?y .
    ?y  rdfs:label  ?type
    FILTER ( ( ( ( ( ( ?type = "work"@en ) || ( ?type = "person"@en ) ) || ( ?type = "organisation"@en ) ) || ( ?type = "place"@en ) ) || ( ?type = "species"@en ) ) && ( lang(?name) = "en" ) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Milbank"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marbella"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Pablo de las Salinas"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kirjat Ata"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bozas"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oranjestad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santeau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wangan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belenkij"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Matabuena"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ニュー・ジャルキー"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kaufering"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Joseph-de-Beauce"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bagnères-de-Bigorre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zell-Pfarre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brush"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Varel"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Citrus Heights"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gratz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernyshkovskiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Juan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "San Gabriel"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Korinthia"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Narharpur"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anoyí"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Waldstetten"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ilsara"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "卡尔卡"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fucking"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "mac rí in Éirinn agus iníon rí gréige"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "mac rí in Éirinn agus iníon rí gréige"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gottmadingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Campana"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Оты"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Erkner"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marktredwitz"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belvidere"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?deathDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:deathDate  ?deathDate
    FILTER ( ?deathDate > "start=1930-01-01;end=1930-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Reil"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:SpanishHeavyMetalMusicalGroups ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Forever_Slave )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Anahuac"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "La Falda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chalco de Díaz Covarrubias"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "马林"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Esslingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Итум-Кале"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chachangda"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Warthausen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berwyn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Haiding"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Three Hills"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Caboxo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tutubu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niedergösgen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hünfelden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanSkaMusicalGroups ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:The_Slackers )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Damme"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paestum"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kosoř"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Étienne-sur-Reyssouze"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teterevni"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Asamankese"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Main Arm"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Emmendingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Titel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Imola"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lütschental"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Enathu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bafra"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bilecik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Severna Park"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Andong"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ilsara"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villa Paranacito"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Starzach"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saksonj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hostre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Naica"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Michigan Center"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roses"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Neuss"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/Johnny_%22Guitar%22_Watson> rdf:type ?type .
    <http://dbpedia.org/resource/Johnny_%22Guitar%22_Watson> ?property ?hasValue .
    ?hasValue rdfs:label ?hvlabel .
    ?property rdfs:label ?plabel .
  }
WHERE
  { <http://dbpedia.org/resource/Johnny_%22Guitar%22_Watson>
              rdf:type    ?type ;
              ?property   ?hasValue .
    ?property  rdfs:label  ?plabel .
    ?hasValue  rdfs:label  ?hvlabel
    FILTER ( lang(?plabel) = "en" )
    FILTER ( lang(?hvlabel) = "en" )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Perryville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Inowroclaw"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Бодега-Бэй"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Katzental"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lago Ranco"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Germain-sur-École"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sukdal"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Stanichki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/Netherhill,_Saskatchewan> rdf:type ?x1 .
    <http://dbpedia.org/resource/Netherhill,_Saskatchewan> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/Netherhill,_Saskatchewan>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/Netherhill,_Saskatchewan>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nekrasovskiy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?outEdge
WHERE
  { ?uri  rdf:type  dbpo:President
    { ?uri  ?outEdge  ?x }
    FILTER ( ! strstarts(str(?x), str("http")) )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gastein"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Old Larissa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "August Apel"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "August Apel"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gołaczewy"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "卡塔马卡省"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Black Forest"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Villa Alemana"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sainte-Marie-St.-Raphael"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Carolina"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fameck"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wilsonville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zeitlofs"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Morning  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Computer_desk
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Enfield"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Egberts' Hoofd Eau de Cologne"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Egberts' Hoofd Eau de Cologne"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hanau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Panormos"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kushun"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dolton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Secaucus"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pel'gora"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Qwaismah"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nakatsu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Arthur_Peck rdf:type ?x1 .
    dbpr:Arthur_Peck rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Arthur_Peck
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Arthur_Peck
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Modlany"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Straßberg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verfeil"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ercé-prés-Liffré"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { { ?city  rdf:type  dby:CapitalsInEurope }
    ?city  dbpo:populationTotal  ?popTotal ;
           rdfs:label            ?name
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:Soul-jazzMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Nina_Simone )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "奥斯特罗夫"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Киров"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Viareggio"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?subcategory ?wikiPageID
WHERE
  { ?subcategory  skos:broader  dbpr:Category:Unicode_typefaces ;
              dbpo:wikiPageID  ?wikiPageID
  }
OFFSET  10000
LIMIT   10000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winnebago"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maesteg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Castiglione a Casauria"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Big_News
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baranskaya"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chernyayevo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Port Hadlock-Irondale"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Olongapo City"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Izumi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Typewriter
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gekhi"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Katarayevo"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Marshallsaaret"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fort Lee"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Mastery  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amsterdam"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bedburg-Hau"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coburg North"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "彼得宫城"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valdagno"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Fall  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mentougou"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Indian_subcontinent
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lucerna"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "圣伯南代布瓦"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jiangmen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

ASK
WHERE
  { <http://dbpedia.org/resource/L'Aura>
              rdf:type  dbpo:Person ;
              rdf:type  dbpo:MusicalArtist
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tolono"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nandy"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zossen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Ant  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ингольштадт"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Podbrezova"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salzbergen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jiexiu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Radcliff"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xiaoyao Town"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Basildon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mindelheim"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tigaday"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hejie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Seraya"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Mike_Swain rdf:type ?x1 .
    dbpr:Mike_Swain rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Mike_Swain
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Mike_Swain
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Copyright_notice
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Willesden"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kampung Belao"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Portlandia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Krivitskiye Budj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Pawel  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ust'-Tym"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Larvik"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Babīte"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Пуга"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pospilje"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "サンタ・クルス"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huncoat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rösrath"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tangdishu"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lucerna"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Oldesloe"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Woodburn"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rangmaw"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Padki"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Calaca"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Calabritto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Salavir'"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Queen Creek"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paritatah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Garacad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kahl am Main"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Carmanville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nowe Skalmierzyce"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  url:  <http://schema.org/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?s ?p ?o
WHERE
  { ?s  ?p        ?o ;
        rdf:type  url:Country
    FILTER ( ?s IN (dbpr:China) )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Paterson"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dalai"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Johan Ringdal"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Johan Ringdal"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Leichlingen (Rheinland)"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sanger"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:GermanElectronicMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Klaus_Nomi )
  }
LIMIT   100
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Mon  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:GermanNewWaveMusicians ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Klaus_Nomi )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "推雅推喇"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cooter"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Katarayevo"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tiylike"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Long_drive
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>

SELECT DISTINCT  ?p ?t
FROM <http://dbpedia.org>
WHERE
  { dbpo:Agent  ?p      ?o .
    ?o        rdf:type  ?t
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  url:  <http://schema.org/>
PREFIX  umbelrc: <http://umbel.org/umbel/rc/>

ASK
WHERE
  {   { dbpr:Cayman_Islands
                  rdf:type  <http://www.ontologydesignpatterns.org/ont/d0.owl#Location>
      }
    UNION
      { dbpr:Cayman_Islands
                  rdf:type  dbpo:Place
      }
    UNION
      { dbpr:Cayman_Islands
                  rdf:type  dbpo:PopulatedPlace
      }
    UNION
      { dbpr:Cayman_Islands
                  rdf:type  umbelrc:PopulatedPlace
      }
    UNION
      { dbpr:Cayman_Islands
                  rdf:type  url:Place
      }
    UNION
      { dbpr:Cayman_Islands
                  rdf:type  dby:YagoGeoEntity
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Berrys"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roxheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Blieskastel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Blizzard
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Portslade"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Coronel Marcelino Mariduena"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cuesta Colorada"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ploskinia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prenzlau"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Smoryn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?b ?v0
WHERE
  { { ?b  rdf:type  dbpo:ChemicalCompound }
    OPTIONAL
      { ?b  skos:prefLabel  ?v0 }
  }
OFFSET  2000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Forsting"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prefectuur Miyagi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karlskoga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Roslyn Heights"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Rev. Dr. Ezra Stiles"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Rev. Dr. Ezra Stiles"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1765-07-05"^^xsd:date )
    FILTER ( ?deathDate > "1765-07-05"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xieji"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chetyrbash"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

ASK
WHERE
  { dbpr:Lacuna_Coil
              rdf:type  dbpo:Person ;
              rdf:type  dbpo:MusicalArtist
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ste.-Croix-du-Mont"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Xinzhou Shi"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "سعد"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Corinzia"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pasig City"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Echterdingen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pizona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Parkany"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mapleton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberwil im Simmental"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "博伦"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "西冷"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vittsjö"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Montcada i Reixac"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Karlovac"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tumble"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koppel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Red_Baron
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Abobo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bengkulu"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Escheburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?uri
WHERE
  { ?uri  rdf:type            dbpo:Organisation ;
          dbprop:yearFounded  ?agr
    FILTER regex(?agr, "1930")
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Plerin"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Cambridge
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Portomaggiore"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Győr"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jeddo"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Losie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Biennale di Firenze Completo camicia e shorts"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Biennale di Firenze Completo camicia e shorts"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tooranie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Læborg"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Channelview"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Dhekiajuli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Louhans"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "start=1915-01-01;end=1925-01-01-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aurora"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Turnj"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Danusia_Francis
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chinguar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("ca.-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Defensa" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "del" .
    ?person  foaf:name     ?name2 .
    ?name2   bif:contains  "ferro" .
    ?person  foaf:name     ?name3 .
    ?name3   bif:contains  "carril" .
    ?person  foaf:name     ?name4 .
    ?name4   bif:contains  "de" .
    ?person  foaf:name     ?name5 .
    ?name5   bif:contains  "Pamplona" .
    ?person  foaf:name     ?name6 .
    ?name6   bif:contains  "Francia" .
    ?person  foaf:name     ?name7 .
    ?name7   bif:contains  "por" .
    ?person  foaf:name     ?name8 .
    ?name8   bif:contains  "los" .
    ?person  foaf:name     ?name9 .
    ?name9   bif:contains  "Alduides" .
    ?person  foaf:name     ?name10 .
    ?name10  bif:contains  "Pablo" .
    ?person  foaf:name     ?name11 .
    ?name11  bif:contains  "Ilarregui"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Patrick Pearse"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Patrick Pearse"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1910-07-27"^^xsd:date )
    FILTER ( ?deathDate > "1910-07-27"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Daxingji"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?country  rdf:type    dbpo:Country ;
              rdfs:label  "Afghanistan"@fr
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ищино"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Gandia"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wakayama"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rjukan"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ドゥシシェヴォ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Yalca"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mt Hood Parkdale"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

ASK
WHERE
  { dbpr:Baustelle
              rdf:type  dbpo:Person ;
              rdf:type  dbpo:MusicalArtist
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Soldier"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Komono-cho"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanMaleSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != <http://dbpedia.org/resource/Taj_Mahal_(musician)> )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Aylesbury"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Borodino"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "South Euclid"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tavernier"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Zhumadian"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "City of Anthony"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lamalou-les-Bains"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "绍曾德奥克斯"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Viareggio"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Santa María Sola"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maple Grove, City of"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Miyagi prefektur"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ville-la-Grand"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lermontow"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Steklyannaya Raditsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Undenheim"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Jean-de-Braye"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lachapelle-Graillouse"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "St. Maloarkhangel'sk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Markhachan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lari"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Božice"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Intellectual_Property_Rights
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lancie"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saranac Lake"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bygland"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?event ?date ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label  ?event ;
              rdf:type    dbpo:Event
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    { ?dbpedia  dbpo:date  ?date }
    FILTER ( ( ?date > xsd:date("start=1920-01-01;end=1960-01-01-01-01") ) && ( ?date < xsd:date("1-01-01") ) )
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?event) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Koruvada"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tolbitsa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bargischow"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ozona"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Elephant Butte"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Filadeli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Macaracas"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pournoy-la-Grasse"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Péron"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Mary Grenville Pendarves Delany"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Mary Grenville Pendarves Delany"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1765-04-27"^^xsd:date )
    FILTER ( ?deathDate > "1765-04-27"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Otford"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Hồ Chí Minh"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Manawatu Wanganui"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Niederorschel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Apple_logo
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kibadika"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Laurus  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mulfingen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Кихтолка"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?people (str(?placeOf) AS ?BirthPlace)
WHERE
  { ?people  rdf:type             dbpo:Person ;
             dbprop:placeOfBirth  ?placeOf
    FILTER ( isLiteral(?placeOf) && regex(str(?placeOf), "Bratislava", "i") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Amphoe Huai Thalaeng"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "东基尔布赖德"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Culpeper"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kempen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Губкинский"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cerro Aguas Calientes"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kåtebol"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sainghin-en-Weppes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tabor"@fi .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Тюр"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ильеши"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?name ?wikipedia ?depiction ?comment
WHERE
  { ?person  rdf:type      dbpo:Person ;
             foaf:name     ?name ;
             foaf:name     ?name0 .
    ?name0   bif:contains  "Olav" .
    ?person  foaf:name     ?name1 .
    ?name1   bif:contains  "Yderstad"
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?name
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ペドリー"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  bif:  <bif:>

SELECT DISTINCT  ?thumb ?entity ?desc ?label ?pic
WHERE
  { ?entity  rdf:type       dbpo:Film ;
             dbpo:abstract  ?desc ;
             rdfs:label     ?label
    OPTIONAL
      { ?entity  foaf:depiction  ?pic ;
                 dbpo:thumbnail  ?thumb
      }
    FILTER ( langMatches(lang(?desc), "en") && langMatches(lang(?label), "en") )
    ?desc  bif:contains  "'france'"
  }
ORDER BY ?label
OFFSET  0
LIMIT   10000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sychevka"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Trolmen"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vamberk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "Jože Klinar"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Jože Klinar"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ludwigsfelde"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ellison"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?city  rdf:type              dby:CitiesInTexas ;
           dbpo:populationTotal  ?popTotal ;
           rdfs:label            ?name
    OPTIONAL
      { ?city  dbpo:populationMetro  ?popMetro }
    FILTER ( ! bound(?popMetro) )
  }
ORDER BY DESC(?popTotal)
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Quarrata"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Evseykino"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Limburg"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:VerveRecordsArtists ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Junior_Mance )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brossard"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ヒンドゥスタン"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Fraimbault"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Singaung"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ibicuã"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Baltiya"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alvundfoss"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Edgewood"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

ASK
WHERE
  { dbpr:Simon_Beta
              rdf:type  dbpo:Person ;
              rdf:type  dbpo:MusicalArtist
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Verdal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rezovac"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sidi Bel Abbes"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Głobikowa"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Morsang-sur-Orge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belyye Berega"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "维特"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spandau"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Store Heddinge"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nueva Delhi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Fiskardo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pang"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Julien"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skalunda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "阿伦斯堡"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Proserpine"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "North Miami Beach"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?city  rdf:type              dby:CitiesInTexas ;
           dbpo:populationTotal  ?popTotal ;
           dbpo:populationMetro  ?popMetro
    FILTER ( ?popMetro > 50000 )
  }
ORDER BY DESC(?popTotal)
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sao Jose dos Campos"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Turner  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moulineaux"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  res:  <http://www.w3.org/2005/sparql-results#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT  ?film ?regissor ?skuespiller1
WHERE
  { res:Leonardo_DiCaprio
              dbpr:actor     ?dsa .
    ?film     rdf:type       dbpo:Film ;
              dbpo:starring  ?skuespiller
  }
ORDER BY ?name
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wautoma"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Maura"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Saint-Julien-des-Points"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Conowingo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oborniki Śląskie"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Por Enquanto"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "マノンガヒラ"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Tecopa"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Svarta"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Huixquilucan de Degollado"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Armação de Pêra"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bol'shiye Kochanj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Düsseldorf"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Astoria"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Rakkestad"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schulte"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "D'Wulongbei"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bradford West Gwillimbury"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oostkapelle"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Monterotondo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Новоромановский"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Weslaco"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Viacom  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:HeavyMetalMusicalGroupsFromPennsylvania ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Circle_of_Dead_Children )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Teulat"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?subcategory ?wikiPageID
WHERE
  { ?subcategory  skos:broader  dbpr:Category:FontShop_typefaces ;
              dbpo:wikiPageID  ?wikiPageID
  }
LIMIT   10000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Agaña"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AmericanChildSingers ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Shirley_Temple )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Georgenthal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Chikman"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Боген"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  *
WHERE
  { ?city  rdf:type              dby:CitiesInTexas ;
           dbpo:populationTotal  ?popTotal ;
           dbpo:populationMetro  ?popMetro
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bolton"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Skeena-Queen Charlotte Regional District"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alferez San Martin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "w altanie florenckiej z wilhelmem mitarskim i stanisławem lackiem"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "w altanie florenckiej z wilhelmem mitarskim i stanisławem lackiem"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX  dul:  <http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT DISTINCT  ?b ?v0
WHERE
  { { ?b  rdf:type  dul:ChemicalObject }
    OPTIONAL
      { ?b  skos:prefLabel  ?v0 }
  }
OFFSET  6000
LIMIT   1000
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sîncraiu Silvaniei"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Thornwood"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  res:  <http://www.w3.org/2005/sparql-results#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>

SELECT  ?film ?regissor ?skuespiller1
WHERE
  { res:Leonardo_DiCaprio
              dbpo:starring  ?film .
    ?film     rdf:type       dbpo:Film ;
              dbpo:starring  ?skuespiller
  }
ORDER BY ?film
LIMIT   100
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Brewing_industry
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "蒙斯"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bat Shelomo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heinersreuth"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Przysowy"@pt .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Boulogne-Billancourt"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pangkalanbrandan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Iglesia  rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Heliopolis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Winkler"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Belogorsk"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jalang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mortagne-sur-Sèvre"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Зайцево"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Komorniki"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lingji"@nn .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Son Servera"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  *
WHERE
  { dbpr:Argentine_people
              rdf:type  ?owl .
    ?owl      rdf:type  owl:Class
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Shek_Sau rdf:type ?x1 .
    dbpr:Shek_Sau rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Shek_Sau
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Shek_Sau
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Spring Valley"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bay Shore"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Obihiro"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pena Blanca"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ter Aar"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Shawano"@fr .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    <http://dbpedia.org/resource/Albert_Smith_(Australian_politician)> rdf:type ?x1 .
    <http://dbpedia.org/resource/Albert_Smith_(Australian_politician)> rdfs:label ?x2 .
  }
WHERE
  {   { <http://dbpedia.org/resource/Albert_Smith_(Australian_politician)>
                  rdf:type  ?x1
      }
    UNION
      { <http://dbpedia.org/resource/Albert_Smith_(Australian_politician)>
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cumlosen"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Kevin_Bass rdf:type ?x1 .
    dbpr:Kevin_Bass rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Kevin_Bass
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Kevin_Bass
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jurjuzan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pineda de Mar"@es .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "es") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "George"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mekakau Ilir"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mission Viejo"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alexis"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?birthDate ?dbpedia ?wikipedia ?depiction ?comment ?thumbnail
WHERE
  { ?dbpedia  rdfs:label      ?person ;
              rdf:type        dbpo:Person ;
              dbpo:birthDate  ?birthDate
    FILTER ( ?birthDate > "1900-01-01"^^xsd:date )
    OPTIONAL
      { ?dbpedia  foaf:isPrimaryTopicOf  ?wikipedia }
    OPTIONAL
      { ?dbpedia  foaf:depiction  ?depiction }
    ?dbpedia  rdfs:comment  ?comment
    FILTER ( lang(?person) = "en" )
    FILTER ( lang(?comment) = "en" )
  }
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ocean Township"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bracken"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Wajak"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sigli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ushtobe"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Michael_Whaley rdf:type ?x1 .
    dbpr:Michael_Whaley rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Michael_Whaley
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Michael_Whaley
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Miribel"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Kneža"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Doncrest"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bernbeuren"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ontario"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bloomingdale Ridge"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "[Anvisning]"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "[Anvisning]"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Volkhovitsj"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alberndorf in der Riedmark"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "镇内立交桥"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schwäbisch Gmünd"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fi") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bad Frankenhausen/Kyffhäuser"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Norwalk"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?person ?wikipedia ?depiction ?comment
WHERE
  {   { ?person  rdfs:label  "Samuel L. Clemens"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "Samuel L. Clemens"@en ;
                  dbpo:wikiPageRedirects  ?person
      }
    ?person  dbpo:birthDate  ?birthDate ;
             dbpo:deathDate  ?deathDate
    OPTIONAL
      { ?person  foaf:depiction  ?depiction }
    OPTIONAL
      { ?person  foaf:isPrimaryTopicOf  ?wikipedia }
    ?person  rdfs:comment  ?comment
    FILTER ( ?birthDate < "1905-09-26"^^xsd:date )
    FILTER ( ?deathDate > "1905-09-26"^^xsd:date )
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?person
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Moga"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Alkmaar"@nl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Andigonia"@sv .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "sv") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Nanij"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Valdeiglesias"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Novelda"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Cole Harbour"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "fr") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Brie-Comte-Robert"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "埃夫德"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sanyanggang"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pt") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Lake Mills"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  owl:  <http://www.w3.org/2002/07/owl#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>

SELECT DISTINCT  ?object ?wikipedia ?depiction ?comment
WHERE
  {   { ?object  rdfs:label  "moj sluga ki nosi mojo prejšnjo uniformo"@en ;
                 rdf:type    owl:Thing
      }
    UNION
      { ?altName  rdfs:label            "moj sluga ki nosi mojo prejšnjo uniformo"@en ;
                  dbpo:wikiPageRedirects  ?object
      }
    OPTIONAL
      { ?object  foaf:depiction  ?depiction }
    OPTIONAL
      { ?object  foaf:isPrimaryTopicOf  ?wikipedia }
    ?object  rdfs:comment  ?comment
    FILTER ( lang(?comment) = "en" )
  }
ORDER BY ?object
LIMIT   10
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Westlock"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Como"@it .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "it") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "卡舒埃里尼亚"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbpr: <http://dbpedia.org/resource/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type   dby:AsexualPeople ;
             rdf:type   dbpo:MusicalArtist ;
             foaf:name  ?name
    FILTER ( ?artist != dbpr:Emilie_Autumn )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sittard"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Demyakhi"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Preuilly-sur-Claise"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Buluo"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "金马"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Destin"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Torrevega"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Braunfels"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:AmericanChildSingers ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Aaliyah )
  }
LIMIT   100
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Canicatti"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Oberhofen im Inntal"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Al Mansuriyah"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "ダハヌ"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Welahan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sangamon"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Veitsbronn"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Mühldorf"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Qarghah'i"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Musayib"@pl .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Vagan"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nn") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Crandall"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "West Windsor"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Sunrise"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Bhilar"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Jeli"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Prichal"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ridge Road"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "pl") )
  }
"
"PREFIX  :     <http://dbpedia.org/resource/>
PREFIX  dct:  <http://purl.org/dc/terms/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  onto: <http://dbpedia.org/ontology/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  ?name ?country ?PartOf ?elevation ?person ?museum ?building
WHERE
  { ?place   rdf:type          onto:Place ;
             rdfs:label        ?name .
    ?person  dbprop:residence  ?place
    OPTIONAL
      { ?place  onto:isPartOf  ?PartOf }
    OPTIONAL
      { ?place  onto:country  ?country }
    OPTIONAL
      { ?place  onto:elevation  ?elevation }
    OPTIONAL
      { ?museum  onto:type  :Museum ;
                 ?p         ?place
      }
    OPTIONAL
      { ?building  dct:subject  :Category:Architectural_history ;
                  ?z           ?place
      }
    FILTER regex(?name, "Paris")
  }
LIMIT   1
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Орландо"@ru .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Ostersjo"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Needham"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "レックリングハウゼン"@ja .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ja") )
  }
"
"PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>

CONSTRUCT 
  { 
    dbpr:Dudley_Hardy rdf:type ?x1 .
    dbpr:Dudley_Hardy rdfs:label ?x2 .
  }
WHERE
  {   { dbpr:Dudley_Hardy
                  rdf:type  ?x1
      }
    UNION
      { dbpr:Dudley_Hardy
                  rdfs:label  ?x2
      }
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Florstadt"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Schaffhausen"@de .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "de") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Кибдо"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "ru") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Midville"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "en") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "格兰岱尔"@zh .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "zh") )
  }
"
"PREFIX  dbpo: <http://dbpedia.org/ontology/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  xsd:  <http://www.w3.org/2001/XMLSchema#>
PREFIX  rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT  *
WHERE
  { ?city     rdf:type    dbpo:Place ;
              rdfs:label  "Pouzac"@en .
    ?airport  rdf:type    dbpo:Airport
      { ?airport  dbpo:city  ?city }
    UNION
      { ?airport  dbpo:location  ?city }
    UNION
      { ?airport  dbprop:cityServed  ?city }
    UNION
      { ?airport  dbpo:city  ?city }
      { ?airport  dbprop:iata  ?iata }
    UNION
      { ?airport  dbpo:iataLocationIdentifier  ?iata }
    OPTIONAL
      { ?airport  foaf:homepage  ?airport_home }
    OPTIONAL
      { ?airport  rdfs:label  ?name }
    OPTIONAL
      { ?airport  dbprop:nativename  ?airport_name }
    FILTER ( ( ! bound(?name) ) || langMatches(lang(?name), "nl") )
  }
"
"PREFIX  dby:  <http://dbpedia.org/class/yago/>
PREFIX  rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX  dbpr: <http://dbpedia.org/resource/>
PREFIX  foaf: <http://xmlns.com/foaf/0.1/>
PREFIX  dbprop: <http://dbpedia.org/property/>

SELECT DISTINCT  ?artist ?name
WHERE
  { ?artist  rdf:type              dby:Electro-hopMusicians ;
             dbprop:wikiPageUsesTemplate  dbpr:Template:Infobox_musical_artist ;
             foaf:name             ?name
    FILTER ( ?artist != dbpr:Flo_Rida )
  }
LIMIT   100
"